89d394b442d03c64f5ca798443a539ba77079599
[platform/upstream/gstreamer.git] / ChangeLog
1 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
2
3         * gst-libs/gst/audio/multichannel.c:
4         (gst_audio_check_channel_positions):
5           It's okay to have caps with channels=1 and a channel position
6           different from GST_AUDIO_CHANNEL_POSITION_FRONT_MONO
7           (deinterleavers might want to keep the position in the caps,
8           so that they can be re-interleaved again properly later).
9           Leave check for unexpected 2-channel layouts intact for now.
10
11 2006-05-16  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12
13         * gst/tcp/gsttcp.c: (gst_tcp_socket_read):
14         Return GST_FLOW_UNEXPECTED when we have an eos on the socket so
15         basesrc can do its job correctly.
16
17 2006-05-16  Tim-Philipp Müller  <tim at centricular dot net>
18
19         * ext/alsa/Makefile.am:
20         * ext/alsa/gstalsa.c: (gst_alsa_detect_rates),
21         (gst_alsa_detect_formats), (get_channel_free_structure),
22         (caps_add_channel_configuration), (gst_alsa_detect_channels),
23         (gst_alsa_probe_supported_formats):
24         * ext/alsa/gstalsa.h:
25         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
26           Refactor and improve caps probing code: probe signedness
27           when we probe the supported formats/widths; set endianness
28           to the one we actually probed for (ie. cpu endianness).
29           
30         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (gst_alsasrc_getcaps),
31         (gst_alsasrc_close):
32         * ext/alsa/gstalsasrc.h:
33           Implement caps probing for alsasrc.
34
35 2006-05-15  Wim Taymans  <wim@fluendo.com>
36
37         * ext/theora/theoradec.c: (gst_theora_dec_reset),
38         (theora_dec_src_query), (theora_dec_src_event),
39         (theora_dec_sink_event), (theora_handle_comment_packet),
40         (theora_handle_data_packet), (theora_dec_change_state):
41         Cleanups, add some G_LIKELY.
42         Use segment helpers instead of our own wrong code.
43         Clear queued buffers on seek and READY.
44
45         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_reset),
46         (vorbis_dec_convert), (vorbis_dec_src_query),
47         (vorbis_dec_src_event), (vorbis_dec_sink_event),
48         (vorbis_handle_comment_packet), (vorbis_dec_push),
49         (vorbis_handle_data_packet), (vorbis_dec_chain),
50         (vorbis_dec_change_state):
51         * ext/vorbis/vorbisdec.h:
52         Remove old useless packetno variable.
53         Do position query properly.
54         Add some G_LIKELY.
55         Do cleanup of queued buffers in new helper function
56         and use it.
57
58 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
59
60         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
61           Query supported sample rates. Fixes #341732.
62
63 2006-05-15  Julien MOUTTE  <julien@moutte.net>
64
65         * gst/playback/gstdecodebin.c: (cleanup_decodebin),
66         (gst_decode_bin_change_state): Make decodebin reusable
67         when going from PAUSE_TO_READY and then back to PAUSED.
68         Fixes #331678.
69
70 2006-05-15  Wim Taymans  <wim@fluendo.com>
71
72         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types),
73         (vorbis_dec_convert), (vorbis_dec_src_query),
74         (vorbis_dec_sink_query), (vorbis_dec_src_event),
75         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
76         (vorbis_dec_clean_queued), (vorbis_dec_push),
77         (vorbis_handle_data_packet), (vorbis_dec_change_state):
78         Cleanups. Use refcounting and DEBUG_OBJECT.
79         Reset segment on flush, use code methods instead of our
80         own wrong version.
81         Fix potential memleak.
82
83 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
84
85         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
86         (gst_alsasink_init):
87         * ext/alsa/gstalsasink.h:
88           Don't leak allocated snd_output_t structure if there's
89           more than one alsasink instance at a time (#341873).
90           Also fix GObject macros in header file.
91           
92 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
93
94         * gst/subparse/gstsubparse.c:
95         (gst_sub_parse_data_format_autodetect):
96           Don't use libxml functions in the typefinding code.
97
98 2006-05-15  Wim Taymans  <wim@fluendo.com>
99
100         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
101         Fix seeking performance in the case where a non-header 
102         packet has a 0 granulepos (busted theora case). 
103         Fixes #341719
104
105 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
106
107         * gst/subparse/gstsubparse.c:
108         (gst_sub_parse_data_format_autodetect):
109           Improve SAMI typefinding: handle case where there are
110           whitespaces or newlines in front of the first <SAMI>
111           tag (#169936).
112
113 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
114
115         * configure.ac:
116           Build video4linux plugin even if there's no XVIDEO, just
117           without implementing the GstXOverlay interface (#334002).
118          
119 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
120
121         * configure.ac:
122         * ext/libvisual/visual.c: (gst_visual_actor_plugin_is_gl),
123         (plugin_init):
124           Add tentative support for libvisual-0.4 (#336881).
125
126 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
127
128         Patch by: Young-Ho Cha <ganadist at chollian net>
129
130         * gst/subparse/samiparse.c: (handle_start_font):
131           Need to map "silver" colour explicitly (#169936).
132
133 2006-05-15  Tim-Philipp Müller  <tim at centricular dot net>
134
135         Patch by: Young-Ho Cha  <ganadist at chollian net>
136
137         * gst/subparse/Makefile.am:
138         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
139         (parser_state_dispose), (gst_sub_parse_data_format_autodetect),
140         (gst_sub_parse_format_autodetect), (feed_textbuf),
141         (gst_subparse_type_find), (plugin_init):
142         * gst/subparse/gstsubparse.h:
143         * gst/subparse/samiparse.c:
144         * gst/subparse/samiparse.h:
145           Add support for SAMI subtitles (#169936).
146
147 2006-05-14  Michael Smith  <msmith@fluendo.com>
148
149         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_fill_others):
150           Fix #341696: crash when mixing L+R+C to mono or stereo.
151         * tests/check/Makefile.am:
152         * tests/check/elements/audioconvert.c: (set_channel_positions),
153         (get_float_mc_caps), (get_int_mc_caps), (GST_START_TEST),
154         (audioconvert_suite):
155           Add test for the above, including some generic framework bits for
156           testing multichannel things.
157
158 === release 0.10.7 ===
159
160 2006-05-14  Jan Schmidt <thaytan@mad.scientist.com>
161
162         * configure.ac:
163           releasing 0.10.7, "Leave the gun"
164
165 2006-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
166
167         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
168         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
169         Fix the build.
170
171 2006-05-12  Jan Schmidt  <thaytan@mad.scientist.com>
172
173         * docs/libs/gst-plugins-base-libs-docs.sgml:
174         * docs/libs/gst-plugins-base-libs-sections.txt:
175         * gst-libs/gst/video/video.c: (gst_video_calculate_display_ratio):
176         * gst-libs/gst/video/video.h:
177         * gst/videoscale/Makefile.am:
178         * gst/videoscale/gstvideoscale.c: (gst_video_scale_fixate_caps):
179         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
180         * tests/check/Makefile.am:
181         * tests/check/libs/video.c: (GST_START_TEST), (video_suite),
182         (main):
183           Fix integer overflow problem with pixel-aspect-ratio calculations
184           in videoscale and xvimagesink (#341542)
185
186 2006-05-12  Tim-Philipp Müller  <tim at centricular dot net>
187
188         * gst-libs/gst/tag/gstid3tag.c:
189           Map GST_IMAGE_TAG to and from ID2v2 APIC frames (#341557).
190
191 2006-05-12  Sebastien Moutte  <sebastien@moutte.net>
192
193         * win32/MANIFEST:
194           update win32 files listing
195
196 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
197
198         patch by: Sjoerd Simons (sjoerd@luon.net)
199
200         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
201         (group_create), (group_destroy), (add_stream),
202         (gst_play_base_bin_get_property),
203         (gst_play_base_bin_get_streaminfo_value_array):
204         * gst/playback/gstplaybasebin.h:
205           API: GstPlayBaseBin::stream-info-value-array property
206           use a more bindings-friendly way of exposing streaminfo
207           using a GValueArray.  Tested in ipython.
208           Closes #341114
209
210 2006-05-11  Wim Taymans  <wim@fluendo.com>
211
212         * gst/playback/gstdecodebin.c: (try_to_link_1), (queue_enlarge),
213         (queue_underrun_cb), (queue_filled_cb):
214         Also catch queue underruns but don't do anything yet.
215         Refactor and comment queue enlarging code a bit.
216
217         * gst/playback/gstplaybasebin.c: (queue_overrun),
218         (queue_threshold_reached), (queue_out_of_data),
219         (gen_preroll_element):
220         If a queue over/underruns check that we don't create nasty
221         deadlocks when the min-threshold is not reached but the
222         max-bytes is. In those cases disable max-bytes when we
223         know that the queue is fed timed data.
224         Add more comments.
225
226 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
227
228         * gst/playback/gstplaybin.c: (gen_audio_element):
229           Make playbin automatically plug an 'audioresample'
230           element before the audio sink as well. This solves
231           problems with sinks that only accept a very specific
232           sample rate, like esdsink (e.g. #340379).
233
234 2006-05-11  Tim-Philipp Müller  <tim at centricular dot net>
235
236         * gst/playback/gstplaybasebin.c: (gen_source_element):
237           Make http sources send special headers so that we receive
238           icecast metadata if the http stream is an icecast stream
239           (otherwise the server will just ignore them). This also
240           means that from now on users will need the 'icydemux'
241           element from gst-plugins-good installed if they want to
242           listen to icecast radio streams. (#341432, #333657).
243
244 2006-05-11  Thomas Vander Stichele  <thomas at apestaart dot org>
245
246         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_remove_client_link),
247         (gst_multi_fd_sink_new_client), (gst_multi_fd_sink_stop):
248           remove stupid example from docs - it should come with a simple
249           C program instead.
250           Clean up/fix docs
251         * tests/check/elements/multifdsink.c: (wait_bytes_served),
252         (fail_if_can_read), (GST_START_TEST),
253         (gst_multifdsink_create_streamheader), (multifdsink_suite):
254           add a test for changing streamheader which exposes a bug in
255           multifdsink
256
257 2006-05-11  Michael Smith  <msmith@fluendo.com>
258
259         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_init),
260         (gst_gnome_vfs_src_received_headers_callback):
261         * ext/gnomevfs/gstgnomevfssrc.h:
262           Don't set icy-caps unless we have a sane interval value. Move
263           interval to a local variable; we never use it outside this function.
264
265 2006-05-11  Wim Taymans  <wim@fluendo.com>
266
267         * sys/ximage/ximagesink.c: (gst_ximagesink_get_type):
268         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_type):
269         Register special buffer types along with the objects so
270         that they are not registered at runtime from N different
271         streaming threads since they are not threadsafe.
272
273 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
274
275         * tests/check/elements/multifdsink.c: (wait_bytes_served),
276         (GST_START_TEST), (fail_unless_read), (multifdsink_suite):
277           add two more tests, one doing streamheader
278
279 2006-05-10  Thomas Vander Stichele  <thomas at apestaart dot org>
280
281         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_stop):
282           clean up the bufqueue when shutting down
283         * tests/check/Makefile.am:
284         * tests/check/elements/multifdsink.c: (setup_multifdsink),
285         (cleanup_multifdsink), (GST_START_TEST), (multifdsink_suite),
286         (main):
287           add a test for the leak that was just fixed
288
289 2006-05-10  Wim Taymans  <wim@fluendo.com>
290
291         * gst/adder/gstadder.c: (gst_adder_setcaps),
292         (gst_adder_query_duration), (gst_adder_query), (forward_event),
293         (gst_adder_src_event), (gst_adder_sink_event),
294         (gst_adder_class_init), (gst_adder_finalize),
295         (gst_adder_request_new_pad), (gst_adder_collected):
296         * gst/adder/gstadder.h:
297         Updated some docs. Added comments and FIXMEs all over the place.
298         Improve debugging info.
299         Fix leak on finalize by not calling the parent.
300         Implement duration query.
301         Make event forwarding threadsafe.
302         Correctly send NEWSEGMENT at start and after flush.
303         Handle EOS correctly.
304         Post error when not negotiated.
305
306         * tests/check/elements/adder.c: (GST_START_TEST):
307         Added FIXME in the test.
308
309 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
310
311         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
312         (gst_text_overlay_halign_get_type),
313         (gst_text_overlay_wrap_mode_get_type):
314         * ext/theora/theoradec.c: (theora_handle_type_packet),
315         (theora_handle_data_packet):
316         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
317         (theora_enc_sink_setcaps), (theora_enc_chain):
318         * gst-libs/gst/cdda/gstcddabasesrc.c:
319         (gst_cdda_base_src_mode_get_type):
320         * gst/audiotestsrc/gstaudiotestsrc.c:
321         (gst_audiostestsrc_wave_get_type):
322         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
323         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
324         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
325         (gst_sync_method_get_type), (gst_unit_type_get_type),
326         (gst_client_status_get_type):
327         * gst/videoscale/gstvideoscale.c:
328         (gst_video_scale_method_get_type):
329         * gst/videotestsrc/gstvideotestsrc.c:
330         (gst_video_test_src_pattern_get_type):
331         * gst/videotestsrc/videotestsrc.c: (paint_setup_I420),
332         (paint_setup_YV12), (paint_setup_YUY2), (paint_setup_UYVY),
333         (paint_setup_YVYU), (paint_setup_IYU2), (paint_setup_Y41B),
334         (paint_setup_Y42B), (paint_setup_Y800), (paint_setup_YVU9),
335         (paint_setup_YUV9), (paint_setup_RGB888), (paint_setup_BGR888),
336         (paint_setup_RGB565), (paint_setup_xRGB1555):
337           Const-ify GEnumValue and GFlagsValue arrays. Use
338           GST_ROUND_UP_* macros instead of home-made ones.
339
340 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
341
342         * configure.ac:
343           Require core CVS for the new newsegment stuff.
344
345 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
346
347         Patch by: Sjoerd Simons  <sjoerd at luon net>
348
349         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type):
350           Register nick for enum value (#341160).
351
352 2006-05-09  Stefan Kost  <ensonic@users.sf.net>
353
354         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find),
355         (plugin_init):
356          backout typefind patch #340375
357          
358         * tests/check/elements/adder.c: (message_received),
359         (GST_START_TEST), (adder_suite):
360           redo, signal-handling of test
361
362 2006-05-09  Wim Taymans  <wim@fluendo.com>
363
364         * gst/adder/gstadder.c: (gst_adder_request_new_pad),
365         (gst_adder_collected):
366         * gst/adder/gstadder.h:
367         Remove bogus segment merging and forwarding, we don't
368         care about timestamps anyway and we just produce a
369         continuous stream. 
370         Also create a nice NEWSEGMENT event when we start.
371         Use _scale_int some more.
372
373 2006-05-09  Edward Hervey  <edward@fluendo.com>
374
375         * tests/icles/stress-xoverlay.c:
376         Fix if core was built without parsing support.
377
378 2006-05-09  Tim-Philipp Müller  <tim at centricular dot net>
379
380         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
381           Add SEDG (Samsung MPEG-4) fourcc.
382
383 2006-05-09  Edward Hervey  <edward@fluendo.com>
384
385         * tests/icles/stress-xoverlay.c:
386         * tests/examples/volume/volume.c:
387         Fix if core was built without parsing support.
388
389         * tests/examples/seek/seek.c:
390         Disable the parse_launch example if core was built without parsing
391         support.
392
393 2006-05-08  Edward Hervey  <edward@fluendo.com>
394
395         * autogen.sh: (CONFIGURE_DEF_OPT): 
396         libtoolize on Darwin/MacOSX is called glibtoolize
397
398 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
399
400         * tests/check/Makefile.am:
401         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST):
402           Disable the adder test, until the build-slaves posses the kindness to 
403           either like it or to give valid reason for not doing so 
404
405 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
406
407         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
408         (adder_suite):
409           Shuffle NULL state change around and raise timeout more
410
411 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
412
413         * gst/typefind/gsttypefindfunctions.c: (mp4_find_box),
414         (mp4_type_find), (plugin_init):
415           Add typefind to distinguish between "audio/x-m4a" and new type
416           "video/mp4". Fixes #340375
417
418         * tests/check/elements/adder.c: (adder_suite):
419           Raise timeout to make buildbot happy
420
421 2006-05-07  Stefan Kost  <ensonic@users.sf.net>
422
423         * gst/adder/gstadder.c: (gst_adder_sink_event),
424         (gst_adder_request_new_pad), (gst_adder_change_state):
425         * gst/adder/gstadder.h:
426         * tests/check/Makefile.am:
427         * tests/check/elements/adder.c: (event_loop), (GST_START_TEST),
428         (adder_suite), (main):
429           Add sink-event handling to adder. It tries to merge incomming
430           newsegment-events. Added test to check if segment_done is comming
431           through. Fixes #340060
432
433 2006-05-05  Andy Wingo  <wingo@pobox.com>
434
435         * ext/theora/theoraparse.c (gst_theora_parse_init)
436         (theora_parse_src_convert, theora_parse_src_query):
437         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init)
438         (vorbis_parse_convert, vorbis_parse_src_query): Add convert and
439         query functions on the source pads of the theora and vorbis parse
440         elements. Fixes position querying when doing a remux.
441
442 2006-05-05  Michael Smith  <msmith@fluendo.com>
443
444         * ext/theora/theoraparse.c: (parse_granulepos),
445         (theora_parse_drain_queue_prematurely),
446         (theora_parse_queue_buffer), (theora_parse_sink_event):
447           Fix flushing.
448           Fix invalid granulepos outputs when starting with a non-keyframe.
449
450 2006-05-05  Jan Schmidt  <thaytan@mad.scientist.com>
451
452         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find),
453         (mpeg1_sys_type_find), (ogganx_type_find), (sw_data_destroy):
454         Rearrange MPEG system stream detection, fixing some memleaks in the
455         process.
456         Constify the data for STARTS_WITH and RIFF helper handlers. Make sure
457         they clean up their data correctly.
458         Remove unused ogganx caps and move the 'is_annodex' check to inside
459         the 'is_ogg' if statement.
460
461 2006-05-05  Wim Taymans  <wim@fluendo.com>
462
463         * gst/playback/gstdecodebin.c: (cleanup_decodebin):
464         Properly remove ghostpads. Fixes #340392
465
466 2006-05-04  David Schleef  <ds@schleef.org>
467
468         * gst/typefind/gsttypefindfunctions.c:
469
470 2006-05-03  Jan Schmidt  <thaytan@mad.scientist.com>
471
472         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
473         (mpeg_ts_probe_headers), (mpeg_ts_type_find):
474
475         When typefinding an MP3 in push-based mode, don't penalise the
476         probability down to 74% when we found 5 valid frames just because we
477         can't peek the end of the file.
478
479         Make the probability for detecting MPEG Transport Streams based on the
480         number of sequential headers we successfully detected.
481
482 2006-05-03  Wim Taymans  <wim@fluendo.com>
483
484         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
485         (vorbis_dec_push), (vorbis_dec_chain):
486         Still produce an error when we receive an empty packet.
487
488 2006-05-03  Wim Taymans  <wim@fluendo.com>
489
490         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
491         (gst_ogg_chain_mark_discont), (gst_ogg_chain_new_stream),
492         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek):
493         Mark buffers with DISCONT after seek and after activating new
494         chains.
495
496         * ext/theora/gsttheoradec.h:
497         * ext/theora/theoradec.c: (gst_theora_dec_reset),
498         (theora_get_query_types), (theora_dec_sink_event),
499         (theora_dec_push), (theora_handle_data_packet), (theora_dec_chain),
500         (theora_dec_change_state):
501         Fix frame counter.
502         Detect and mark DISCONT buffers.
503
504         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
505         (vorbis_dec_sink_event), (vorbis_dec_push), (vorbis_dec_chain),
506         (vorbis_dec_change_state):
507         * ext/vorbis/vorbisdec.h:
508         Use GstSegment.
509         Detect and mark DISCONT buffers.
510         Don't crash on 0 sized buffers.
511
512 2006-05-03  Wim Taymans  <wim@fluendo.com>
513
514         * gst/volume/gstvolume.c: (volume_funcfind), (volume_set_caps),
515         (volume_transform_ip):
516         Increase "volume" property to 10.0. Fixes #340369.
517         Set the process function to NULL when capsnego fails so that
518         we properly error out.
519
520 2006-05-02  Stefan Kost  <ensonic@users.sf.net>
521
522         * gst/playback/gstplaybin.c: (add_sink):
523         * gst/playback/test.c: (main):
524         * gst/playback/test5.c: (dump_element_stats):
525         * gst/playback/test6.c: (main):
526           free cpas using gst_caps_unref, don't leak caps-strings
527
528 2006-05-01  Tim-Philipp Müller  <tim at centricular dot net>
529
530         * gst/typefind/gsttypefindfunctions.c: (musepack_type_find),
531         (plugin_init):
532           Refine musepack typefinding a bit. Return MAXIMUM
533           probability when we detect stream version 7 to make
534           sure the mpeg audio typefinder doesn't trump us.
535
536 2006-04-29  Tim-Philipp Müller  <tim at centricular dot net>
537
538         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
539           Protect against unexpected NULL strf_data buffer.
540
541 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
542
543         * tests/check/elements/audioconvert.c: (verify_convert),
544         (GST_START_TEST):
545           interpret the out[] buffer in the order the bytes are actually
546           put in, which is LITTLE_ENDIAN, not BYTE_ORDER.
547           Other tests should use BYTE_ORDER since the array is filled in
548           with actual values
549
550 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
551
552         * tests/check/elements/audioconvert.c: (verify_convert),
553         (GST_START_TEST):
554           when a test fails, give an indication of which it is
555
556 2006-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
557
558         * gst-libs/gst/cdda/gstcddabasesrc.c:
559           compile fix; strtol() needs <stdlib.h>
560
561 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
562
563         * ext/alsa/gstalsamixerelement.c:
564         * ext/alsa/gstalsasrc.c:
565         * ext/cdparanoia/gstcdparanoiasrc.c:
566         * ext/gnomevfs/gstgnomevfssink.c:
567         * ext/gnomevfs/gstgnomevfssrc.c:
568         * ext/ogg/gstoggdemux.c:
569         * ext/ogg/gstoggmux.c:
570         * ext/ogg/gstoggparse.c:
571         * ext/ogg/gstogmparse.c:
572         * ext/pango/gstclockoverlay.c:
573         * ext/pango/gsttextoverlay.c:
574         * ext/pango/gsttextrender.c:
575         * ext/pango/gsttimeoverlay.c:
576         * ext/theora/theoradec.c:
577         * ext/theora/theoraenc.c:
578         * ext/vorbis/vorbisdec.c:
579         * ext/vorbis/vorbisenc.c:
580         * gst-libs/gst/audio/gstaudiofilter.c:
581         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
582         * gst/audioconvert/gstaudioconvert.c:
583         * gst/audiorate/gstaudiorate.c:
584         * gst/audioresample/gstaudioresample.c:
585         * gst/audiotestsrc/gstaudiotestsrc.c:
586         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
587         * gst/playback/gstdecodebin.c:
588         * gst/playback/gstplaybin.c:
589         * gst/playback/gststreamselector.c:
590         * gst/subparse/gstsubparse.c:
591         * gst/tcp/gstmultifdsink.c:
592         * gst/tcp/gsttcpclientsink.c:
593         * gst/tcp/gsttcpclientsrc.c:
594         * gst/tcp/gsttcpserversink.c:
595         * gst/tcp/gsttcpserversrc.c:
596         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
597         * gst/videorate/gstvideorate.c:
598         * gst/videoscale/gstvideoscale.c:
599         * gst/videotestsrc/gstvideotestsrc.c:
600         * gst/volume/gstvolume.c:
601         * sys/v4l/gstv4ljpegsrc.c:
602         * sys/v4l/gstv4lmjpegsink.c:
603         * sys/v4l/gstv4lmjpegsrc.c:
604         * sys/v4l/gstv4lsrc.c:
605         * sys/ximage/ximagesink.c:
606         * sys/xvimage/xvimagesink.c:
607         * tests/check/libs/cddabasesrc.c:
608           make GstElementDetails const
609
610 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
611
612         * gst/adder/gstadder.c: (gst_adder_setcaps), (gst_adder_src_event),
613         (gst_adder_init):
614           send events from src-pad to all sink-pads fixes #338657
615
616 2006-04-28  Stefan Kost  <ensonic@users.sf.net>
617
618         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps),
619         (alsasink_parse_spec):
620           query width capabilities from alsa, fixes #338919
621
622 2006-04-28  Wim Taymans  <wim@fluendo.com>
623
624         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init),
625         (gst_multi_fd_sink_remove_client_link):
626         * gst/tcp/gstmultifdsink.h:
627         Fix race condition in multifdsink that can lead to spurious 
628         duplicate clients. this patch adds a new signal that is fired when
629         multifdsink has removed all references to the fd.
630         Fixes #339574.
631         Updated documentation.
632         API: client-fd-removed signal added
633
634 2006-04-28  Michael Smith  <msmith@fluendo.com>
635
636         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_get_stats):
637           When asking g_value_array_new to prealloc elements, we may as well
638           ask for the right number of elements.
639
640 2006-04-28  Wim Taymans  <wim@fluendo.com>
641
642         * gst-libs/gst/audio/gstbaseaudiosink.c:
643         (gst_base_audio_sink_drain), (gst_base_audio_sink_event),
644         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
645         patch to make timestamp checking more tollerant to rounding 
646         errors given that real discontinuities are to be marked on
647         buffers. Fixes some asf files and #338778.
648         Also avoid some crashers when we receive an event in the 
649         NULL state.
650
651 2006-04-28  Michael Smith  <msmith@fluendo.com>
652
653         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
654         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
655         (gst_gnome_vfs_src_get_property),
656         (gst_gnome_vfs_src_send_additional_headers_callback),
657         (gst_gnome_vfs_src_received_headers_callback),
658         (gst_gnome_vfs_src_create), (gst_gnome_vfs_src_start),
659         (gst_gnome_vfs_src_stop):
660         * ext/gnomevfs/gstgnomevfssrc.h:
661           Remove ICY handling (mostly) from gnomevfssrc, in favour of
662           proper shared support within icydemux.
663
664 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
665
666         * gst/videorate/gstvideorate.c: (gst_video_rate_reset),
667         (gst_video_rate_swap_prev), (gst_video_rate_chain):
668           fix up docs
669           fix a leak when no caps negotiated
670           fix counting of input frames
671         * tests/check/elements/.cvsignore:
672         * tests/check/elements/videorate.c: (assert_videorate_stats),
673         (GST_START_TEST), (videorate_suite):
674           add tests for these
675
676 2006-04-28  Wim Taymans  <wim@fluendo.com>
677
678         * gst-libs/gst/audio/gstringbuffer.c:
679         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
680         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
681         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
682         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
683         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
684         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
685         (gst_ring_buffer_commit), (gst_ring_buffer_read),
686         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
687         (gst_ring_buffer_clear), (gst_ring_buffer_may_start):
688         Check arguments passed to public functions instead of
689         crashing.
690
691 2006-04-28  Wim Taymans  <wim@fluendo.com>
692
693         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
694         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
695         GstBaseAudioSrc must be live or it does not work.
696
697         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audio_src_init):
698         Don't set live to TRUE as this is the default in the parentclass.
699
700 2006-04-28  Wim Taymans  <wim@fluendo.com>
701
702         * gst/videoscale/gstvideoscale.c: (gst_video_scale_transform_caps),
703         (gst_video_scale_fixate_caps), (gst_video_scale_src_event):
704         Videoscale doesn't pass on pixel-aspect ratio. Handle all
705         fixation cases better. Fixes #338991
706
707 2006-04-28  Wim Taymans  <wim@fluendo.com>
708
709         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
710         Handle 0/1 framerate correctly Fixes #331901.
711
712 2006-04-28  Wim Taymans  <wim@fluendo.com>
713
714         * tests/check/elements/audioconvert.c: (get_float_caps),
715         (GST_START_TEST), (audioconvert_suite):
716         Added check for correct clipping when doing float samples
717         in audioconvert.
718
719 2006-04-28  Wim Taymans  <wim@fluendo.com>
720
721         * gst/videorate/gstvideorate.c: (gst_video_rate_event),
722         (gst_video_rate_chain):
723         Print more debugging info.
724
725 2006-04-28  Wim Taymans  <wim@fluendo.com>
726
727         * gst/audioresample/gstaudioresample.c: (gst_audioresample_init),
728         (resample_set_state_from_caps):
729         Add support for other formats audioresample can handle such as
730         32 bits in and float and 64 bits float. Fixes #301759
731
732 2006-04-28  Wim Taymans  <wim@fluendo.com>
733
734         * gst/audioconvert/audioconvert.c: (float):
735         correctly clip float samples > 1.0. Fixes #338718
736
737 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
738
739         Patch by: Young-Ho Cha  <ganadist at chollian net>
740
741         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
742         (gst_text_overlay_render_text):
743           Don't strip newlines from the text. Also, center lines
744           within multi-line paragraphs (#339405).
745
746 2006-04-28  Tim-Philipp Müller  <tim at centricular dot net>
747
748         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find):
749           Fix wavpack typefinding to work in more cases (don't peek
750           for chunks of multiple hundred kBs at once, but process
751           things step-by-step in smaller units). Fixes #339786.
752
753 2006-04-28  Thomas Vander Stichele  <thomas at apestaart dot org>
754
755         * configure.ac:
756           back to HEAD
757
758 === release 0.10.6 ===
759
760 2006-04-28  Thomas Vander Stichele <thomas at apestaart dot org>
761
762         * configure.ac:
763           releasing 0.10.6, "Chao"
764
765 2006-04-26  David Schleef  <ds@schleef.org>
766
767         * gst/videoscale/gstvideoscale.c: Add call to oil_init().
768           Fixes #338897.
769
770 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
771
772         * configure.ac:
773         * win32/common/config.h:
774           new prerelease
775
776 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
777
778         patch by: Wim Taymans
779
780         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
781         (gst_ogg_demux_perform_seek):
782           make sure correct newsegments are sent, so that the decoder
783           and the demuxer agree on timestamps.  Fixes playback of a lot
784           of Ogg files that do not start from 0.  Fixes #339833.
785
786 2006-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
787
788         Patch by: Edward Hervey  <edward@fluendo.com>
789
790         * gst/videorate/gstvideorate.c: (gst_video_rate_chain):
791         * tests/check/Makefile.am:
792         * tests/check/elements/videorate.c: (assert_videorate_stats),
793         (setup_videorate), (cleanup_videorate), (GST_START_TEST),
794         (videorate_suite), (main):
795           Fix an infinite loop if frames are passed in with wrongly ordered
796           timestamps.  Fixes #339013.
797
798 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
799
800         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
801
802         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
803           fix typefinding on some ISO files.  Fixes #339212.
804
805 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
806
807         Patch by: Tim-Philipp Müller  <tim at centricular dot net>
808
809         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
810           add another H264 fourcc.  Fixes #339047.
811
812 2006-04-22  Thomas Vander Stichele  <thomas at apestaart dot org>
813
814         Patch by: Jan Schmidt
815
816         * gst/playback/gststreamselector.c:
817         (gst_stream_selector_bufferalloc):
818           Restore old StreamSelector behaviour.
819           Fixes #338419.
820
821 2006-04-12  Thomas Vander Stichele  <thomas at apestaart dot org>
822
823         * configure.ac:
824         * win32/common/config.h:
825           prerelease
826
827 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
828
829         Patch by: Antoine Tremblay  <hexa00 at gmail dot com>
830
831         * gst-libs/gst/rtp/gstbasertpdepayload.c:
832         (gst_base_rtp_depayload_finalize), (gst_base_rtp_depayload_push):
833           Fix some memory leaks: on finalize, free buffers left in the queue
834           before destroying the queue; in _push(), unref rtp_buf even if
835           the process vfunc returned a NULL buffer as output buffer (#337548);
836           demote some recuring debug messages to LOG level.
837
838 2006-04-11  Wim Taymans  <wim@fluendo.com>
839
840         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
841         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
842         (gst_ogg_chain_free), (gst_ogg_demux_sink_event),
843         (gst_ogg_demux_loop):
844         More cleanups.
845         Respect segment stop when emiting EOS or SEGMENT_DONE.
846         Fixes (#337945).
847
848 2006-04-11  Tim-Philipp Müller  <tim at centricular dot net>
849
850         * gst/playback/gststreamselector.c:
851         (gst_stream_selector_get_property):
852           Don't leak pad name.
853
854 2006-04-10  Michael Smith  <msmith@fluendo.com>
855
856         * tests/check/Makefile.am:
857         * tests/check/gst-plugins-base.supp:
858           Suppress an old libtheora bug (fixed in more recent versions), so 
859           that FC4 buildslaves can pass.
860
861 2006-04-10  Wim Taymans  <wim@fluendo.com>
862
863         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
864         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
865         (gst_ogg_demux_init), (gst_ogg_demux_finalize),
866         (gst_ogg_demux_sink_event), (gst_ogg_demux_get_data),
867         (gst_ogg_demux_loop):
868         Don't leak events.
869         Remember what error we got when finding chains, if we
870         were shutdown, that would not be an error.
871
872 2006-04-10  Wim Taymans  <wim@fluendo.com>
873
874         * gst-libs/gst/audio/gstbaseaudiosink.c:
875         (gst_base_audio_sink_event):
876         Starting the ringbuffer when we did not acquire it can cause
877         a deadlock, is pointless and causes nasty things for
878         subclasses. 
879         Fixes gst-launch audiotestsrc num-buffers=0 ! alsasink.
880
881 2006-04-10  Wim Taymans  <wim@fluendo.com>
882
883         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
884         (gst_ogg_demux_receive_event), (gst_ogg_pad_event),
885         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
886         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
887         (gst_ogg_demux_deactivate_current_chain),
888         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
889         (gst_ogg_demux_bisect_forward_serialno),
890         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain):
891         Add some more debugging.
892
893 2006-04-10  Wim Taymans  <wim@fluendo.com>
894
895         * ext/theora/theoradec.c: (theora_dec_src_event),
896         (theora_handle_data_packet):
897         Some more debug info.
898
899         * tests/examples/seek/seek.c: (start_seek), (main):
900         Print element messages too.
901
902 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
903
904         * gst/audioresample/debug.h:
905           replace debug macros with variable number of parameters
906           by a simple alias to gstreamer standard debug macros 
907          (#define RESAMPLE_ERROR GST_ERROR, __VA_ARGS__ is not
908           supported by MSVC 6.0 and 7.1)
909         * gst/audioresample/resample.h:
910           define M_PI and rint for WIN32
911         * win32/common/libgstaudio.def:
912         * win32/common/libgstriff.def:
913         * win32/common/libgsttag.def:
914         * win32/common/libgstvideo.def:
915           add new exported functions
916         * win32/vs6:
917           update project files
918
919 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
920
921         * ext/alsa/gstalsamixeroptions.c:
922         (gst_alsa_mixer_options_class_init):
923         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init):
924         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_class_init):
925         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init):
926         * ext/ogg/gstoggparse.c: (gst_ogg_parse_class_init):
927         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_class_init):
928         * gst-libs/gst/audio/gstaudiofilter.c:
929         (gst_audio_filter_class_init):
930         * gst-libs/gst/audio/gstaudiosink.c:
931         (gst_audioringbuffer_class_init):
932         * gst-libs/gst/audio/gstaudiosrc.c:
933         (gst_audioringbuffer_class_init):
934         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_class_init):
935         * gst-libs/gst/interfaces/colorbalancechannel.c:
936         (gst_color_balance_channel_class_init):
937         * gst-libs/gst/interfaces/mixeroptions.c:
938         (gst_mixer_options_class_init):
939         * gst-libs/gst/interfaces/mixertrack.c:
940         (gst_mixer_track_class_init):
941         * gst-libs/gst/interfaces/tunerchannel.c:
942         (gst_tuner_channel_class_init):
943         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_class_init):
944         * gst-libs/gst/netbuffer/gstnetbuffer.c:
945         (gst_netbuffer_class_init):
946         * gst-libs/gst/rtp/gstbasertppayload.c:
947         (gst_basertppayload_class_init):
948         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
949         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
950         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
951         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init):
952         * gst/playback/gststreamselector.c:
953         (gst_stream_selector_class_init):
954         * gst/subparse/gstsubparse.c: (gst_sub_parse_class_init):
955         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_class_init):
956         * sys/v4l/gstv4lcolorbalance.c:
957         (gst_v4l_color_balance_channel_class_init):
958         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_class_init):
959         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
960         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
961         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_channel_class_init),
962         (gst_v4l_tuner_norm_class_init):
963         * sys/ximage/ximagesink.c: (gst_ximagesink_class_init):
964         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_class_init):
965         * tests/old/testsuite/alsa/sinesrc.c: (sinesrc_class_init):
966         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
967
968 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
969
970         * ext/pango/gsttextrender.h:
971         * gst-libs/gst/audio/gstaudiosink.h:
972         * gst-libs/gst/audio/gstaudiosrc.h:
973         * gst-libs/gst/audio/gstbaseaudiosink.h:
974         * gst-libs/gst/audio/gstbaseaudiosrc.h:
975         * gst-libs/gst/audio/gstringbuffer.h:
976         * gst-libs/gst/rtp/gstbasertpdepayload.h:
977         * gst-libs/gst/rtp/gstbasertppayload.h:
978         * gst-libs/gst/video/gstvideofilter.h:
979         * gst-libs/gst/video/gstvideosink.h:
980         * gst/playback/gstplaybasebin.h:
981         * gst/tcp/gstmultifdsink.h:
982         * sys/v4l/gstv4lelement.h:
983         Fix broken GObject macros
984
985 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
986
987         * ext/alsa/gstalsasink.c: (set_hwparams), (alsasink_parse_spec):
988         More debug to trace why my USB headset is not working with gst
989
990 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
991
992         * gst/playback/gstplaybasebin.c: (group_destroy):
993         Clean up our group elements properly in the case where it never 
994         got committed - it still got added unconditionally to the bin.
995
996 2006-04-07  Wim Taymans  <wim@fluendo.com>
997
998         * ext/theora/theoradec.c: (theora_dec_sink_event),
999         (theora_handle_data_packet), (theora_dec_chain):
1000         Unref unhandled events.
1001         Protect against empty buffers.
1002         Perform QoS on running time.
1003
1004 2006-04-07  Michael Smith  <msmith@fluendo.com>
1005
1006         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_set_header_on_caps),
1007         (gst_vorbis_enc_chain):
1008           Remove leaks from vorbisenc.
1009           Mostly minor changes, the only significant one is that now the
1010           buffers we set as 'streamheader' on the caps are copies of the
1011           original buffers, to avoid circular refcounting problems.
1012
1013 2006-04-07  Jan Schmidt  <thaytan@mad.scientist.com>
1014
1015         * gst/playback/gstplaybasebin.c: (mute_stream), (setup_substreams):
1016           Don't remove our mute-probe if someone else already did so.
1017           Don't set a 2nd one if there is already one pending on the pad.
1018
1019         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
1020         (do_playbin_seek):
1021           When a seek fails, ensure that playbin is still set back to playing.
1022           
1023         * gst/typefind/gsttypefindfunctions.c: (mpeg_ts_probe_headers),
1024         (mpeg_ts_type_find), (plugin_init):
1025           Add a typefind function for mpeg-ts streams. (Closes: #336617)
1026
1027 2006-04-06  Andy Wingo  <wingo@pobox.com>
1028
1029         * gst/videorate/gstvideorate.c (gst_video_rate_reset) 
1030         (gst_video_rate_init): Caps-related parameters should not be reset
1031         by a flush -- move their inits to the instance init function.
1032         (gst_video_rate_flush_prev): Don't complain if gst_pad_push
1033         is not OK, just return the result.
1034
1035         * gst/audiotestsrc/gstaudiotestsrc.c
1036         (gst_audio_test_src_class_init)
1037         (gst_audio_test_src_get_times): Re-enable is-live=true, as was
1038         broken by Stefan's commit on 24 March.
1039
1040         * ext/ogg/gstoggmux.c (gst_ogg_mux_push_buffer): Set caps on
1041         buffers being pushed out. Fixes oggmux ! multifdsink.
1042
1043 2006-04-05  Tim-Philipp Müller  <tim at centricular dot net>
1044
1045         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
1046         (gst_vorbis_dec_init), (vorbis_dec_finalize):
1047         * ext/vorbis/vorbisdec.h:
1048         * ext/vorbis/vorbisenc.c: (gst_vorbis_enc_add_interfaces),
1049         (gst_vorbis_enc_base_init), (gst_vorbis_enc_class_init),
1050         (gst_vorbis_enc_sink_setcaps), (gst_vorbis_enc_convert_src),
1051         (gst_vorbis_enc_convert_sink), (gst_vorbis_enc_get_query_types),
1052         (gst_vorbis_enc_src_query), (gst_vorbis_enc_sink_query),
1053         (gst_vorbis_enc_init), (gst_vorbis_enc_get_tag_value),
1054         (gst_vorbis_enc_metadata_set1), (gst_vorbis_enc_set_metadata),
1055         (gst_vorbis_enc_setup), (gst_vorbis_enc_clear),
1056         (gst_vorbis_enc_buffer_from_packet),
1057         (gst_vorbis_enc_buffer_from_header_packet),
1058         (gst_vorbis_enc_push_buffer), (gst_vorbis_enc_push_packet),
1059         (gst_vorbis_enc_set_header_on_caps), (gst_vorbis_enc_sink_event),
1060         (gst_vorbis_enc_chain), (gst_vorbis_enc_output_buffers),
1061         (gst_vorbis_enc_get_property), (gst_vorbis_enc_set_property),
1062         (gst_vorbis_enc_change_state):
1063         * ext/vorbis/vorbisenc.h:
1064           Remove left-over 0.8 cruft; use GST_DEBUG_FUNCPTR; make
1065           vorbisenc adhere to the official nomenclature; use boilerplate
1066           macro.
1067
1068 2006-04-04  Andy Wingo  <wingo@pobox.com>
1069
1070         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
1071         Whoops, fix bug introduced. Bad hacker!
1072         
1073         * gst/videorate/gstvideorate.c (gst_video_rate_flush_prev):
1074         Properly handle the case where you get EOS before any buffers are
1075         received. Use gst_buffer_make_metadata_writable where appropriate.
1076
1077         * ext/theora/theoradec.c (theora_handle_data_packet): This value
1078         is often negative -- make it signed so as not to wrap around.
1079         Fixes segfaults introduced on 9 March.
1080
1081 2006-04-03  Wim Taymans  <wim@fluendo.com>
1082
1083         * ext/theora/gsttheoradec.h:
1084         * ext/theora/theoradec.c: (theora_dec_src_event):
1085         Don't try to store a gdouble in a gboolean.
1086         Small cleanups.
1087
1088 2006-04-03  Michael Smith  <msmith@fluendo.com>
1089
1090         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads):
1091           Oggmux sucks.
1092           Make it suck slightly less by writing out the final page.
1093           Still can't encode a vorbis-in-ogg file correctly, though.
1094
1095 2006-04-03  Andy Wingo  <wingo@pobox.com>
1096
1097         * ext/theora/theoraparse.c (theora_parse_drain_queue): Um, remove
1098         a g_print.
1099
1100         * ext/theora/theora.c (plugin_init): Register theoraparse.
1101
1102         * ext/theora/gsttheoraparse.h: 
1103         * ext/theora/theoraparse.c: New files implementing a theora
1104         parser. Now we can properly remux ogg/theora+vorbis, yay.
1105
1106         * ext/vorbis/vorbisparse.c: Add some docs and a copyright.
1107
1108 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1109
1110         * gst/audiotestsrc/gstaudiotestsrc.c:
1111           Fixed the sample pipeline (see #323798)
1112
1113 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1114
1115         * configure.ac:
1116         * win32/common/config.h:
1117         * win32/common/config.h.in:
1118           use AS_VERSION and AS_NANO
1119           more cleanups
1120
1121 2006-03-31  Andy Wingo  <wingo@pobox.com>
1122
1123         * ext/vorbis/vorbisparse.c (vorbis_parse_sink_event): Fix
1124         uninitialized variable return that would happen.
1125         
1126         * ext/vorbis/vorbisparse.c (vorbis_parse_drain_queue): Fix
1127         uninitialized variable return that would never happen.
1128
1129         * ext/vorbis/vorbisparse.c (gst_vorbis_parse_init) 
1130         (vorbis_parse_sink_event): Add an event function to flush our
1131         state on a seek, and to drain buffers on a premature EOS.
1132         (vorbis_parse_push_headers, vorbis_parse_clear_queue) 
1133         (vorbis_parse_push_buffer, vorbis_parse_drain_queue_prematurely) 
1134         (vorbis_parse_chain, vorbis_parse_queue_buffer) 
1135         (vorbis_parse_drain_queue): Queue up buffers until we can set
1136         their timestamps and granulepos values.
1137
1138         * ext/vorbis/vorbisparse.h: Include the vorbis decoder headers,
1139         and keep track of data needed for deriving granulepos and
1140         timestamps for buffers.
1141
1142 2006-03-29  Wim Taymans  <wim@fluendo.com>
1143
1144         Patch by: j^ <j at bootlab dot org>
1145
1146         * ext/alsa/gstalsamixerelement.c:
1147         (gst_alsa_mixer_element_class_init):
1148         * ext/alsa/gstalsasink.c:
1149         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init):
1150         * ext/ogg/gstoggdemux.c:
1151         * ext/ogg/gstoggmux.c:
1152         * ext/ogg/gstoggparse.c:
1153         * ext/pango/gstclockoverlay.c:
1154         * ext/pango/gsttextoverlay.c:
1155         * ext/pango/gsttextrender.c:
1156         * ext/pango/gsttimeoverlay.c:
1157         * ext/theora/theoradec.c:
1158         * ext/theora/theoraenc.c:
1159         * ext/vorbis/vorbisdec.c:
1160         * ext/vorbis/vorbisenc.c:
1161         * gst/audioconvert/gstaudioconvert.c:
1162         * gst/subparse/gstsubparse.c:
1163         * gst/tcp/gstmultifdsink.c:
1164         * gst/tcp/gsttcpclientsink.c:
1165         * gst/tcp/gsttcpclientsrc.c:
1166         * gst/tcp/gsttcpserversink.c:
1167         * gst/tcp/gsttcpserversrc.c:
1168           better/unified long descriptions
1169           Fixes #336477
1170
1171 2006-03-29  Wim Taymans  <wim@fluendo.com>
1172
1173         * tests/examples/seek/seek.c: (end_scrub), (seek_cb), (start_seek),
1174         (stop_seek):
1175         Don't let double and triple clicks mess up our state.
1176
1177 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1178
1179         * gst/playback/gstplaybin.c: (gen_video_element),
1180         (gen_text_element), (gen_audio_element), (gen_vis_element):
1181           Error out gracefully when we can't create any of the usual
1182           conversion elements for some reason. Also, don't try to
1183           create an audioscale (sic) element that's not used anyway.
1184
1185 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1186
1187         * gst/playback/gstplaybasebin.c: (setup_source):
1188           Don't post RESOURCE_NOT_FOUND error when we can't find a source
1189           element for a particular protocol, that's confusing for users.
1190           Instead, post a RESOURCE_FAILED error, so that our own error
1191           message is actually shown in totem etc. (#336303).
1192
1193 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
1194
1195         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1196
1197         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_finalize),
1198         (gst_gnome_vfs_src_get_icy_metadata):
1199           Fix some minor memory leaks (#336194).
1200
1201 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
1202
1203         * ext/gnomevfs/gstgnomevfs.c:
1204         (gst_gnome_vfs_location_to_uri_string):
1205         * ext/gnomevfs/gstgnomevfs.h:
1206         * ext/gnomevfs/gstgnomevfssink.c:
1207         (gst_gnome_vfs_sink_set_property):
1208         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_set_property):
1209           Make gnomevfssink accept filenames as well as URIs for the
1210           "location" property, just like gnomevfssrc does (and
1211           filesrc/filesink do) (#336190).
1212
1213 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
1214
1215         * tests/check/generic/clock-selection.c: (GST_START_TEST):
1216           set to NULL before unreffing, fixes a valgrind leak.
1217           Why was this not triggering the error that an object needs to
1218           be NULL before unreffing ?
1219         * win32/common/config.h:
1220           update
1221
1222 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
1223
1224         * gst/subparse/gstsubparse.c: (convert_encoding),
1225         (gst_sub_parse_change_state):
1226         * gst/subparse/gstsubparse.h:
1227           Text subtitle files may or may not be UTF-8. If it's not, we
1228           don't really want to see '?' characters in place of non-ASCII
1229           characters like accented characters. So let's assume the input
1230           is UTF-8 until we come across text that is clearly not. If it's
1231           not UTF-8, we don't really know what it is, so try the following:
1232           (a) see whether the GST_SUBTITLE_ENCODING environment variable
1233           is set; if not, check (b) if the current locale encoding is
1234           non-UTF-8 and use that if it is, or (c) assume ISO-8859-15 if
1235           the current locale encoding is UTF-8 and the environment variable
1236           was not set to any particular encoding. Not perfect, but better
1237           than nothing (and better than before, I think) (fixes #172848).
1238
1239 2006-03-24  Thomas Vander Stichele <thomas at apestaart dot org>
1240
1241         * configure.ac:
1242           update core requirement to 0.10.4.1 because of async_playback
1243           vmethod on GstBaseSink
1244
1245 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
1246
1247         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
1248         * gst/adder/gstadder.c: (gst_adder_init):
1249         use DEBUG_FUNCPTR for collectpads
1250
1251 2006-03-24  Stefan Kost  <ensonic@users.sf.net>
1252
1253         * docs/plugins/Makefile.am:
1254         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1255         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1256         * ext/cdparanoia/gstcdparanoiasrc.c:
1257         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_base_init),
1258         (gst_gnome_vfs_sink_class_init):
1259         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_base_init):
1260         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_base_init):
1261         * ext/ogg/gstoggmux.c:
1262         * ext/ogg/gstoggparse.c: (gst_ogg_parse_base_init):
1263         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_base_init),
1264         (gst_ogm_video_parse_base_init), (gst_ogm_text_parse_base_init):
1265         * ext/pango/gsttextoverlay.c:
1266         * ext/pango/gsttextrender.c:
1267         * ext/theora/theoradec.c:
1268         * ext/theora/theoraenc.c:
1269         * ext/vorbis/vorbisdec.c:
1270         * ext/vorbis/vorbisenc.c:
1271         * gst-libs/gst/audio/gstaudiofilter.c:
1272         (gst_audio_filter_base_init):
1273         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
1274         (gst_audio_filter_template_base_init):
1275         * gst/adder/gstadder.c: (gst_adder_get_type):
1276         * gst/adder/gstadder.h:
1277         * gst/audioconvert/gstaudioconvert.c:
1278         * gst/audiotestsrc/gstaudiotestsrc.c:
1279         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
1280         (gst_audio_test_src_create):
1281         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1282         * gst/playback/gstdecodebin.c:
1283         * gst/playback/gstplaybin.c:
1284         * gst/playback/gststreamselector.c:
1285         (gst_stream_selector_base_init):
1286         * gst/subparse/gstsubparse.c: (gst_sub_parse_base_init):
1287         * gst/volume/gstvolume.c:
1288         * sys/v4l/gstv4lmjpegsink.c:
1289         * sys/v4l/gstv4lmjpegsrc.c:
1290         * tests/check/libs/cddabasesrc.c:
1291         * tests/old/examples/gob/gst-identity2.gob:
1292           Add docs for adder, use GST_ELEMENT_DETAILS macro,
1293           define GstElementDetails at the top
1294
1295 2006-03-23  Sebastien Moutte  <sebastien@moutte.net>
1296
1297         * win32/common/libgstinterfaces.def:
1298         Add a lot of export functions for gst-python
1299         * win32/vs6/libgstinterfaces.dsp:
1300         Add a missing include folder in the project configuration
1301         
1302 2006-03-23  Wim Taymans  <wim@fluendo.com>
1303
1304         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1305         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
1306         (gst_base_audio_src_change_state):
1307         Fix audio sources, forgot to make the ringbuffer
1308         startable...
1309
1310 2006-03-23  Wim Taymans  <wim@fluendo.com>
1311
1312         * gst-libs/gst/audio/gstbaseaudiosrc.c:
1313         (gst_base_audio_src_get_time), (gst_base_audio_src_create),
1314         (gst_base_audio_src_change_state):
1315         unparent instead of unref the ringbuffer.
1316
1317 2006-03-23  Wim Taymans  <wim@fluendo.com>
1318
1319         * gst-libs/gst/audio/gstbaseaudiosink.c:
1320         (gst_base_audio_sink_class_init), (gst_base_audio_sink_async_play),
1321         (gst_base_audio_sink_do_play), (gst_base_audio_sink_change_state):
1322         Implement new async_play vmethod to start slaving and allow
1323         playback start in case of async PLAY state changes. 
1324
1325         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
1326         Enable QoS with new method in base class.
1327
1328 2006-03-23  Wim Taymans  <wim@fluendo.com>
1329
1330         Patch by: Julien MOUTTE <julien at moutte dot net>
1331
1332         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_query),
1333         (gst_video_test_src_do_seek), (gst_video_test_src_create):
1334         Partially handle 0 framerate, only EOS after the first frame
1335         is missing.
1336
1337 2006-03-23  Wim Taymans  <wim@fluendo.com>
1338
1339         Patch by: Fabrizio Gennari <fabrizio dot ge at tiscali dot it>
1340
1341         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1342         (gst_riff_create_video_template_caps):
1343         * gst/ffmpegcolorspace/avcodec.h:
1344         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
1345         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
1346         (gst_ffmpegcsp_avpicture_fill):
1347         * gst/ffmpegcolorspace/imgconvert.c:
1348         Patch for support of YVU9 AVI files (#334822)
1349
1350 2006-03-22  Edward Hervey  <edward@fluendo.com>
1351
1352         * docs/design/design-decodebin.txt:
1353         Added design document for new decodebin
1354         (Target Caps): text/x-pango-markup is also a default target caps.
1355
1356 2006-03-22  Wim Taymans  <wim@fluendo.com>
1357
1358         * gst-libs/gst/audio/gstbaseaudiosink.c:
1359         (gst_base_audio_sink_dispose):
1360         Since we _parent the ringbuffer, we also need to
1361         _unparent instead of a plain _unref.
1362
1363 2006-03-22  Wim Taymans  <wim@fluendo.com>
1364
1365         * tests/examples/seek/seek.c: (end_scrub), (do_seek), (seek_cb),
1366         (stop_seek), (scrub_toggle_cb), (main):
1367         Add scrub checkbox.
1368
1369 2006-03-21  Tim-Philipp Müller  <tim at centricular dot net>
1370
1371         * ext/ogg/gstoggparse.c: (gst_ogg_parse_find_stream),
1372         (gst_ogg_parse_chain):
1373           Fix very inefficient usage of linked lists (#335365).
1374
1375 2006-03-21  Edward Hervey  <edward@fluendo.com>
1376
1377         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
1378         * gst/playback/gstplaybin.c: (handoff):
1379         * gst/playback/gststreamselector.c:
1380         (gst_stream_selector_set_property):
1381         gcc 4.1 unreferenced pointer fixes.
1382         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put):
1383         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
1384         gst_buffer_ref() now takes a GstBuffer*.
1385
1386 2006-03-20  Julien MOUTTE  <julien@moutte.net>
1387
1388         * sys/xvimage/xvimagesink.c:
1389         (gst_xvimagesink_get_format_from_caps): Fix a memleak reported
1390         by Jan Schmidt.
1391
1392 2006-03-19  Tim-Philipp Müller  <tim at centricular dot net>
1393
1394         * gst/typefind/gsttypefindfunctions.c: (id3v2_type_find),
1395         (id3v1_type_find), (apetag_type_find), (plugin_init):
1396           Can't do tag preferences via probability, as tags would then
1397           lose against types that are recognised with MAXIMUM probability
1398           (like .wav); so let all tag typefinders return MAXIMUM themselves
1399           and order them via the rank. Split ID3v1 and ID3v2 typefinders so
1400           that we can prefer APE to ID3v1 (fixes #335028).
1401           
1402 2006-03-17  Wim Taymans  <wim@fluendo.com>
1403
1404         * gst-libs/gst/audio/gstbaseaudiosink.c:
1405         (gst_base_audio_sink_change_state):
1406         * gst-libs/gst/audio/gstringbuffer.c: (wait_segment),
1407         (gst_ring_buffer_may_start):
1408         * gst-libs/gst/audio/gstringbuffer.h:
1409         Only start playback if we are playing.
1410         should fix #330748.
1411
1412 2006-03-17  Jan Schmidt  <thaytan@mad.scientist.com>
1413
1414         * ext/alsa/gstalsasink.c: (gst_alsasink_getcaps):
1415         * win32/common/config.h:
1416           Revert accidental commits to these files.
1417
1418 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
1419
1420         Patch by: Michal Benes  <michal dot benes at xeris dot cz>
1421
1422         * tests/Makefile.am:
1423           Don't try to build tests in tests/icles if we
1424           don't have X (#323852)
1425
1426 2006-03-16  Tim-Philipp Müller  <tim at centricular dot net>
1427
1428         * gst-libs/gst/tag/gstid3tag.c:
1429           Add TXXX frame identifiers for replaygain stuff as used
1430           by some taggers (see #323721).
1431
1432 2006-03-16  Jan Schmidt  <thaytan@mad.scientist.com>
1433
1434         * gst/playback/gststreamselector.c:
1435         (gst_stream_selector_set_property),
1436         (gst_stream_selector_bufferalloc):
1437           Preserve the existing buggy streamselector behaviour by performing
1438           a fallback buffer allocation when downstream isn't linked yet.
1439           This should really be fixed in playbin by blocking pads until it's
1440           linked them.
1441           Also, use gst_pad_alloc_buffer instead of
1442           gst_pad_alloc_buffer_and_set.
1443
1444 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
1445
1446         * gst-libs/gst/tag/gstid3tag.c:
1447           Don't crash on unknown ID3v2 TXXX frames.
1448           
1449 2006-03-15  Jan Schmidt  <thaytan@mad.scientist.com>
1450
1451         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise):
1452           Chain up to the parent finalize method.
1453           Add 32-bit sample size to the template caps.
1454
1455         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
1456         (gst_riff_create_video_template_caps):
1457           Add the fourcc that the VMWare codec uses.
1458           
1459         * gst/playback/gststreamselector.c:
1460         (gst_stream_selector_set_property),
1461         (gst_stream_selector_bufferalloc),
1462         (gst_stream_selector_request_new_pad):
1463           For the active pad, forward buffer-alloc requests, otherwise
1464           return GST_FLOW_NOT_LINKED. This also prevents xvimagesink
1465           having to memcpy every frame when used by playbin.
1466
1467         * gst/tcp/gstmultifdsink.c:
1468         (gst_multi_fd_sink_handle_client_write):
1469           Get negotiated caps from the sink pad, rather than the sink
1470           pad's peer.
1471
1472 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
1473
1474         Patch by: Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
1475         
1476         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_pop_callbacks):
1477           Don't forget to set src->callbacks_pushed to FALSE again when
1478           popping them, otherwise re-activation in a different mode won't
1479           work (#334620).
1480
1481 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
1482
1483         Patch by: Sebastien Moutte  <sebastien moutte net>
1484
1485         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: (gst_ff_vid_caps_new),
1486         (gst_ff_aud_caps_new), (gst_ffmpeg_pixfmt_to_caps),
1487         (gst_ffmpeg_smpfmt_to_caps):
1488           Replace __VA_ARGS__ caps creation macros with varargs functions.
1489           Makes things compile on MSVC (#320765), looks nicer, and we can
1490           tell the compiler to check for the NULL terminator.
1491
1492 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
1493
1494         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
1495
1496         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1497           Make sure the buffer we copy into is really always big
1498           enough, this time for real (#333488).
1499           
1500 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
1501
1502         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1503           Add support for 24bpp DIB (#305279).
1504
1505 2006-03-14  Wim Taymans  <wim@fluendo.com>
1506
1507         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_init):
1508         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
1509         * gst/ffmpegcolorspace/gstffmpegcolorspace.c: (gst_ffmpegcsp_init):
1510         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
1511         (gst_video_scale_init), (gst_video_scale_src_event):
1512         Re-enable QoS after the release.
1513         Rework videoscale to use the base class src_event handler.
1514
1515 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
1516
1517         * configure.ac:
1518           back to CVS.
1519
1520 === release 0.10.5 ===
1521
1522 2006-03-13  Thomas Vander Stichele <thomas at apestaart dot org>
1523
1524         * configure.ac:
1525           releasing 0.10.5, "Net"
1526
1527 2006-03-13  Tim-Philipp Müller  <tim at centricular dot net>
1528
1529         * docs/plugins/Makefile.am:
1530           Part of previous cdparanoiasrc docs fixes, forgot to commit.
1531           
1532 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
1533
1534         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1535         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1536         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1537           Add cdparanoiasrc to docs.
1538
1539         * gst-libs/gst/cdda/gstcddabasesrc.c:
1540           More GstCddaBaseSrc docs.
1541
1542 2006-03-12  Tim-Philipp Müller  <tim at centricular dot net>
1543
1544         * docs/libs/gst-plugins-base-libs-sections.txt:
1545         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_user_tag):
1546         * gst-libs/gst/tag/tag.h:
1547           API: libgsttag: new method gst_tag_from_id3_user_tag().
1548
1549 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
1550
1551         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1552           NULL-terminate array of mpeg4 video file extensions.
1553           Fixes crash on PPC (#334226).
1554
1555 2006-03-11  Tim-Philipp Müller  <tim at centricular dot net>
1556
1557         * ext/gnomevfs/gstgnomevfssrc.c:
1558         (gst_gnome_vfs_src_check_get_range):
1559           gnome_vfs_uri_is_local() alone is not a good indicator
1560           whether we can operate in pull-mode with a specific URI,
1561           as it returns FALSE for file:// URIs that point to an
1562           NFS-mounted path. Be more conservative here: whitelist
1563           local files, blacklist http URIs and use the old
1564           mechanism for anything else (fixes #334216).
1565
1566 2006-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1567
1568         * configure.ac:
1569           back to trunk
1570
1571 === release 0.10.4 ===
1572
1573 2006-03-10  Thomas Vander Stichele <thomas at apestaart dot org>
1574
1575         * configure.ac:
1576           releasing 0.10.4, "Power"
1577
1578 2006-03-10  Jan Schmidt  <thaytan@mad.scientist.com>
1579
1580         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
1581         Disable max-lateness by setting it to -1 for now, so that 
1582         we can bed QoS stuff in thoroughly between now and the next
1583         release.
1584
1585 2006-03-10  Tim-Philipp Müller  <tim at centricular dot net>
1586
1587         Patch by: Fabrizio Gennari
1588
1589         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1590           Make sure we don't read beyond the palette buffer in case of
1591           broken or manipulated files (#333488)
1592
1593 2006-03-10  Edward Hervey  <edward@fluendo.com>
1594
1595         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1596         Fix for variable not initialized.
1597
1598 2006-03-09  Wim Taymans  <wim@fluendo.com>
1599
1600         * ext/libvisual/visual.c: (gst_visual_get_type),
1601         (gst_visual_src_setcaps), (gst_vis_src_negotiate),
1602         (gst_visual_chain):
1603         Small cleanups.
1604
1605         * ext/theora/gsttheoradec.h:
1606         * ext/theora/theoradec.c: (gst_theora_dec_init),
1607         (gst_theora_dec_reset), (_theora_granule_time),
1608         (theora_dec_src_convert), (theora_dec_sink_convert),
1609         (theora_dec_src_query), (theora_dec_src_event),
1610         (theora_dec_sink_event), (theora_handle_comment_packet),
1611         (theora_handle_header_packet), (theora_dec_push),
1612         (theora_handle_data_packet), (theora_dec_chain),
1613         (theora_dec_change_state):
1614         Add simple QoS.
1615
1616 2006-03-09  Wim Taymans  <wim@fluendo.com>
1617
1618         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
1619         (audiocast_register_listener), (gst_gnome_vfs_src_start):
1620         Some cleanups.
1621
1622 2006-03-09  Wim Taymans  <wim@fluendo.com>
1623
1624         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
1625         Don't try to activate NULL chains.
1626
1627 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
1628
1629         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset):
1630           Fix invalid memory access to region before peek'd data (#332964).
1631
1632 2006-03-09  Wim Taymans  <wim@fluendo.com>
1633
1634         Patch by: Christophe Fergeau
1635
1636         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init):
1637         * ext/pango/gsttextrender.c: (gst_text_render_init):
1638         * gst/adder/gstadder.c: (gst_adder_init):
1639         Don't leak padtemplates, closes #333510.
1640
1641 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
1642
1643         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
1644           Fix invalid memory access: make sure string passed to
1645           regexec() is NUL-termianted.
1646
1647 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
1648
1649         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find_at_offset),
1650         (mp3_type_find):
1651           Refactor mpeg/audio typefinding to make it more maintainable
1652           and easier to fine-tune. Make probing into middle of the file
1653           work properly (fixes #333900, also see #152688).
1654
1655 2006-03-09  Tim-Philipp Müller  <tim at centricular dot net>
1656
1657         * gst/typefind/gsttypefindfunctions.c:
1658         (utf8_type_find_have_valid_utf8_at_offset):
1659           Remove part from previous commit that was bogus:
1660           g_utf8_validate() does in fact not accept embedded
1661           zeroes, so we don't need to check for those (thanks
1662           to Mike for the hint).
1663
1664 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
1665
1666         * gst/typefind/gsttypefindfunctions.c:
1667         (utf8_type_find_count_embedded_zeroes),
1668         (utf8_type_find_have_valid_utf8_at_offset), (utf8_type_find):
1669           Make plain/text typefinder more conservative: firstly, check
1670           for embedded zeroes, which are perfectly valid UTF-8 characters,
1671           but also a fairly good sign that something is not a plain text
1672           file; secondly, probe into the middle of the file if possible.
1673           If we can't probe into the middle, limit the probability value
1674           to be returned to TYPE_FIND_POSSIBLE (see #333900).
1675
1676 2006-03-08  Michael Smith  <msmith@fluendo.com>
1677
1678         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1679           Make typefind function name for mpeg4 video unique.
1680
1681 2006-03-08  Wim Taymans  <wim@fluendo.com>
1682
1683         * ext/libvisual/visual.c: (gst_visual_init),
1684         (gst_visual_clear_actors), (gst_visual_dispose),
1685         (gst_visual_reset), (gst_visual_src_setcaps),
1686         (gst_visual_sink_setcaps), (gst_vis_src_negotiate),
1687         (gst_visual_sink_event), (gst_visual_src_event), (get_buffer),
1688         (gst_visual_chain), (gst_visual_change_state):
1689         Cleanups, post nice errors.
1690         Handle sink and src events.
1691         Implement simple QoS.
1692
1693         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init):
1694         Use new basesink methods to configure max-lateness.
1695         Small doc update.
1696
1697         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1698         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps):
1699         Debug statement cleanups.
1700
1701         * gst/volume/gstvolume.c: (gst_volume_class_init):
1702         Simple cleanup.
1703
1704 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
1705
1706         * ext/pango/gsttextoverlay.c: (gst_text_overlay_class_init),
1707         (gst_text_overlay_init), (gst_text_overlay_set_property),
1708         (gst_text_overlay_get_property):
1709           Revert API/ABI break from March 1. Keep 'halign' and 'valign'
1710           as string type properties, but mark them deprecated. Add
1711           'halignment' and 'valignment' properties that use enums
1712           instead of strings.
1713
1714 2006-03-08  Tim-Philipp Müller  <tim at centricular dot net>
1715
1716         Patch by: Fabrizio Gennari
1717
1718         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1719           Allow palettes with less than 256 colours in AVI files
1720           (#333488)
1721
1722 2006-03-07  Julien MOUTTE  <julien@moutte.net>
1723
1724         * ext/pango/gsttextoverlay.c: (gst_text_overlay_text_event),
1725         (gst_text_overlay_video_event): Fix wrong EOS handling on text
1726         pad. We were releasing the queued text buffer when we should keep
1727         it until video pad gets EOS or discard the text buffer because it's
1728         too old. That was eating the last subtitle buffer. Add some more
1729         debug.
1730
1731 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
1732
1733         * ext/pango/gsttextoverlay.c: (gst_text_overlay_render_text),
1734         (gst_text_overlay_video_chain):
1735           Fix invalid memory access (we can't access a buffer after it's been
1736           pushed downstream without taking a reference); fix memory leak (if
1737           there's no text to render, bail out before allocating stuff).
1738
1739 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
1740
1741         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
1742         (gst_text_overlay_setcaps_txt), (gst_text_overlay_video_chain):
1743         * ext/pango/gsttextoverlay.h:
1744           If input is plain text, escape it before passing it to
1745           pango_layout_set_markup().
1746
1747 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
1748
1749         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_chain):
1750           Don't ignore flow return from gst_pad_push().
1751
1752 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
1753
1754         Patch by: Fabrizio Gennari
1755
1756         * ext/libvisual/visual.c: (gst_visual_getcaps),
1757         (gst_visual_src_setcaps), (gst_visual_sink_setcaps):
1758         * ext/ogg/gstoggmux.c: (gst_ogg_mux_sinkconnect):
1759         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
1760         (gst_vorbisenc_convert_sink):
1761         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size),
1762         (gst_audio_duration_from_pad_buffer):
1763         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_link),
1764         (gst_audio_filter_chain):
1765         * gst-libs/gst/rtp/gstbasertpdepayload.c:
1766         (gst_base_rtp_depayload_setcaps):
1767         * gst-libs/gst/video/video.c: (gst_video_frame_rate),
1768         (gst_video_get_size):
1769         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
1770           Don't leak references returned by gst_pad_get_parent()
1771           (#333663)
1772
1773 2006-03-06  Stefan Kost  <ensonic@users.sf.net>
1774
1775         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
1776           change location param details
1777         * gst/volume/gstvolume.c: (plugin_init):
1778           correct plugin description
1779
1780 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
1781
1782         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_class_init),
1783         (gst_gnome_vfs_src_check_get_range):
1784           Override GstBaseSrc::check_get_range() in order to avoid opening
1785           the resource just to check whether we can operate in pull-mode or
1786           not - we can predict that pretty well from the URI alone. Should
1787           fix problems with last.fm (#331690). (Requires latest core CVS).
1788
1789 2006-03-06  Wim Taymans  <wim@fluendo.com>
1790
1791         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
1792         (gst_video_sink_class_init):
1793         Throw away frames that are later than 20 ms.
1794
1795 2006-03-06  Tim-Philipp Müller  <tim at centricular dot net>
1796
1797         Patch by: Fabrizio Gennari
1798
1799         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
1800           Set depth on WMA caps (#333545)
1801
1802 2006-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
1803
1804         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
1805         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
1806           put Theora BOS pages before others.  This hardcodes
1807           the Ogg/Theora I profile, but hey.
1808
1809 2006-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
1810
1811         * ext/ogg/README:
1812           updated with some examples
1813         * ext/theora/theoraenc.c: (granulepos_to_timestamp),
1814         (granulepos_add), (theora_buffer_from_packet):
1815         * ext/vorbis/vorbisenc.c: (granulepos_to_timestamp_offset),
1816         (granulepos_to_timestamp), (gst_vorbisenc_buffer_from_packet),
1817         (gst_vorbisenc_chain):
1818           implement strategy from ext/ogg/README
1819         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
1820         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
1821         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_compare_pads),
1822         (gst_ogg_mux_queue_pads), (gst_ogg_mux_collected):
1823           Fix muxer so that oggz-validate is happy with all streams;
1824           except for no eos mark, and the BOS page ordering
1825         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
1826         (check_buffer_granulepos):
1827         * tests/check/pipelines/vorbisenc.c: (check_buffer_granulepos):
1828           update tests to check for OFFSET being set as requested
1829           fixed type of granulepos, it's not a ClockTime
1830
1831 2006-03-05  Julien MOUTTE  <julien@moutte.net>
1832
1833         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
1834         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
1835         Check that the xvimage we are creating has a correct size
1836         before returning it. (#314897)
1837
1838 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
1839
1840         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
1841           Give id3 and ape tag typefinders a rank slightly higher
1842           than PRIMARY to ensure they're always run before any of
1843           the other typefinders (in particular wav and mp3) (#324186).
1844
1845 2006-03-05  Tim-Philipp Müller  <tim at centricular dot net>
1846
1847         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
1848           Add support for '3IVD' fourcc (#333403).
1849
1850 2006-03-04  Tim-Philipp Müller  <tim at centricular dot net>
1851
1852         * configure.ac:
1853           Bump requirements to GStreamer CVS for the new error enum.
1854
1855         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_render):
1856           Emit new GST_RESOURCE_ERROR_NO_SPACE_LEFT when there's no
1857           space left on the device (fixes #333352).
1858
1859 2006-03-04  Sebastien Moutte  <sebastien@moutte.net>
1860
1861         * win32/vs6:
1862           add a project file for libgstvolume
1863           update the workspace
1864
1865 2006-03-03  Thomas Vander Stichele  <thomas at apestaart dot org>
1866
1867         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
1868         * tests/check/pipelines/theoraenc.c: (check_buffer_is_header),
1869         (GST_START_TEST):
1870           Fix for http://bugzilla.gnome.org/show_bug.cgi?id=333254
1871           Set IN_CAPS on header buffers
1872
1873 2006-03-02  Wim Taymans  <wim@fluendo.com>
1874
1875         * docs/plugins/Makefile.am:
1876         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1877         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1878         Add audioresample to docs.
1879
1880         * gst/audioconvert/gstaudioconvert.c:
1881         Add revision date.
1882
1883         * gst/audioresample/gstaudioresample.c:
1884         (gst_audioresample_base_init), (gst_audioresample_class_init),
1885         (gst_audioresample_init), (gst_audioresample_dispose),
1886         (audioresample_get_unit_size), (audioresample_transform_caps),
1887         (resample_set_state_from_caps), (audioresample_transform_size),
1888         (audioresample_set_caps), (audioresample_event),
1889         (audioresample_do_output), (audioresample_transform),
1890         (audioresample_pushthrough), (gst_audioresample_set_property),
1891         (gst_audioresample_get_property), (plugin_init):
1892         * gst/audioresample/gstaudioresample.h:
1893         Added docs.
1894         Small code cleanups.
1895
1896 2006-03-02  Wim Taymans  <wim@fluendo.com>
1897
1898         * docs/plugins/Makefile.am:
1899         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1900         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1901         Added videoscale to docs.
1902
1903         * gst/videorate/gstvideorate.c: (gst_video_rate_flush_prev),
1904         (gst_video_rate_swap_prev), (gst_video_rate_event),
1905         (gst_video_rate_chain):
1906         Fix typo in docs.
1907
1908         * gst/videoscale/gstvideoscale.c: (gst_video_scale_class_init),
1909         (gst_video_scale_init), (gst_video_scale_prepare_size),
1910         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
1911         (gst_video_scale_fixate_caps), (gst_video_scale_transform):
1912         * gst/videoscale/gstvideoscale.h:
1913         Added docs, examples.
1914         Some code cleanups.
1915         Post errors instead of g_warning.
1916
1917 2006-03-02  Wim Taymans  <wim@fluendo.com>
1918
1919         * docs/libs/gst-plugins-base-libs-docs.sgml:
1920         * docs/libs/gst-plugins-base-libs-sections.txt:
1921         * docs/libs/gst-plugins-base-libs.types:
1922         * docs/plugins/Makefile.am:
1923         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1924         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1925         Added some more docs to libs and plugins.
1926
1927         * gst-libs/gst/audio/gstringbuffer.c:
1928         (gst_ring_buffer_prepare_read), (gst_ring_buffer_clear):
1929         * gst-libs/gst/audio/gstringbuffer.h:
1930         Document ringbuffer some more.
1931
1932         * gst/videorate/gstvideorate.c: (gst_video_rate_class_init),
1933         (gst_video_rate_setcaps), (gst_video_rate_reset),
1934         (gst_video_rate_init), (gst_video_rate_flush_prev),
1935         (gst_video_rate_swap_prev), (gst_video_rate_event),
1936         (gst_video_rate_chain), (gst_video_rate_change_state):
1937         * gst/videorate/gstvideorate.h:
1938         Fix videorate to use segments.
1939         Make it work with 0/1 framerates (closes #331903)
1940         Handle EOS correctly.
1941         Added docs.
1942
1943 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1944
1945         * ext/ogg/gstogmparse.c: (gst_ogm_parse_class_init),
1946         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
1947         (gst_ogm_text_parse_init), (gst_ogm_parse_change_state):
1948           In state change function, first chain up to parent class,
1949           then handle downwards state change stuff. Remove some
1950           commented out cruft from 0.8 code.
1951
1952 2006-03-02  Tim-Philipp Müller  <tim at centricular dot net>
1953
1954         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
1955         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
1956         (gst_ogm_parse_sink_convert), (gst_ogm_parse_sink_query),
1957         (gst_ogm_parse_chain):
1958           Don't remove/re-add source pad if the new caps are the same as
1959           the old caps anyway (#333042). When removing source pad, don't
1960           unref it afterwards - we didn't ref it when adding. Sprinkle some
1961           GST_DEBUG_FUNCPTR goodness here and there. Don't leak references
1962           after using gst_pad_get_parent(). Return downstream flow return
1963           value in chain function.
1964
1965 2006-03-02  Wim Taymans  <wim@fluendo.com>
1966
1967         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1968         * docs/plugins/gst-plugins-base-plugins.args:
1969         * docs/plugins/gst-plugins-base-plugins.hierarchy:
1970         * docs/plugins/gst-plugins-base-plugins.interfaces:
1971         * docs/plugins/gst-plugins-base-plugins.signals:
1972         Fix hierarchy, added some more elements to the docs.
1973
1974         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
1975         (gst_ffmpegcsp_get_type):
1976         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
1977         Fix docs for ffmpegcolorspace.
1978
1979 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
1980
1981         * gst/typefind/gsttypefindfunctions.c: (id3_type_find),
1982         (apetag_type_find), (ape_type_find), (plugin_init):
1983           Some typefinding fine-tuning:
1984           - rank ID3/APE tags in order of preference via probabilities, so that
1985             ID3v2 > APEv2 > APEv1 > ID3v1.
1986           - three or four bytes don't really justify MAXIMUM probability,
1987             change those to 'very likely' (musepack and monkeysaudio).
1988
1989 2006-03-01  Wim Taymans  <wim@fluendo.com>
1990
1991         * docs/plugins/Makefile.am:
1992         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
1993         * docs/plugins/gst-plugins-base-plugins-sections.txt:
1994         * ext/alsa/gstalsamixer.c:
1995         * ext/alsa/gstalsamixer.h:
1996         * ext/alsa/gstalsamixerelement.c:
1997         (gst_alsa_mixer_element_class_init), (gst_alsa_mixer_element_init):
1998         * ext/alsa/gstalsamixerelement.h:
1999         * ext/alsa/gstalsasink.c:
2000         * ext/alsa/gstalsasink.h:
2001         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
2002         (gst_alsasrc_init):
2003         * ext/alsa/gstalsasrc.h:
2004         Added alsa docs.
2005         Small code cleanups.
2006
2007 2006-03-01  Wim Taymans  <wim@fluendo.com>
2008
2009         * ext/theora/Makefile.am:
2010         Dist new header too,
2011
2012 2006-03-01  Wim Taymans  <wim@fluendo.com>
2013
2014         * docs/plugins/Makefile.am:
2015         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2016         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2017         * ext/gnomevfs/gstgnomevfssink.h:
2018         * ext/gnomevfs/gstgnomevfssrc.h:
2019         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
2020         * ext/vorbis/vorbisdec.h:
2021         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_sink):
2022         * ext/vorbis/vorbisenc.h:
2023         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps),
2024         (vorbis_parse_chain), (vorbis_parse_change_state):
2025         * ext/vorbis/vorbisparse.h:
2026         * gst/audioconvert/gstaudioconvert.h:
2027         * gst/tcp/gsttcpserversink.h:
2028         * gst/videotestsrc/gstvideotestsrc.c:
2029         * gst/videotestsrc/gstvideotestsrc.h:
2030         * gst/volume/gstvolume.c:
2031         * gst/volume/gstvolume.h:
2032         Fix some more docs.
2033         Added docs for vorbisdec and vorbisparse.
2034         Fix vorbisparse.
2035
2036 2006-03-01  Wim Taymans  <wim@fluendo.com>
2037
2038         * docs/plugins/Makefile.am:
2039         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
2040         * docs/plugins/gst-plugins-base-plugins-sections.txt:
2041         * ext/pango/gstclockoverlay.h:
2042         * ext/pango/gsttextoverlay.h:
2043         * ext/pango/gsttextrender.h:
2044         * ext/pango/gsttimeoverlay.h:
2045         * ext/theora/gsttheoradec.h:
2046         * ext/theora/gsttheoraenc.h:
2047         * ext/theora/theoradec.c:
2048         * ext/theora/theoraenc.c:
2049         * gst/audioconvert/gstaudioconvert.h:
2050         * gst/audiotestsrc/gstaudiotestsrc.h:
2051         * gst/ffmpegcolorspace/gstffmpegcolorspace.h:
2052         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_class_init):
2053         * gst/tcp/gstmultifdsink.h:
2054         Updated/added documentation.
2055
2056         * ext/pango/gsttextoverlay.c: (gst_text_overlay_valign_get_type),
2057         (gst_text_overlay_halign_get_type),
2058         (gst_text_overlay_wrap_mode_get_type),
2059         (gst_text_overlay_base_init), (gst_text_overlay_class_init),
2060         (gst_text_overlay_init), (gst_text_overlay_set_property),
2061         (gst_text_overlay_get_property):
2062         Fix up properties to be enums instead of string to make bindings,
2063         introspection and automatic GUI creation possible.
2064         Add getters for the properties.
2065
2066 2006-02-28  Sebastien Moutte  <sebastien@moutte.net>
2067
2068         * gst/audiotestsrc/gstaudiotestsrc.c:
2069           added defines of M_PI and M_PI_2
2070         * gst/ffmpegcolorspace/avcodec.h:
2071           removed #include "stdint.h" for win32 as _stdint.h is 
2072           autogenerated to win32/common
2073         * win32/common/libgstaudio.def:
2074         * win32/common/libgsttag.def:
2075           added some exports
2076         * win32/vs6:
2077           some project files bugs corrected
2078         * win32/vs7:
2079           project files are reset to the default vs7 configuration 
2080           (they link to msvcr71.dll using default optimizations)
2081           
2082 2006-02-28  Wim Taymans  <wim@fluendo.com>
2083
2084         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_class_init):
2085         Fix some docs.
2086
2087 2006-02-28  Edward Hervey  <edward@fluendo.com>
2088
2089         * ext/alsa/gstalsasrc.c:
2090         Set proper class on the ElementDetails:
2091         Source/Audio instead of Src/Audio/
2092
2093 2006-02-28  Edward Hervey  <edward@fluendo.com>
2094
2095         * gst/videoscale/vs_scanline.c:
2096         (vs_scanline_resample_nearest_RGBA):
2097         Revert optimization in videoscale. It should go in liboil and have
2098         an appropriate liboil function.
2099
2100 2006-02-28  Wim Taymans  <wim@fluendo.com>
2101
2102         * gst-libs/gst/audio/gstbaseaudiosink.c:
2103         (gst_base_audio_sink_provide_clock):
2104         Don't try to provide a clock in the NULL state.
2105
2106 2006-02-28  Wim Taymans  <wim@fluendo.com>
2107
2108         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
2109         (gst_ogg_pad_event), (gst_ogg_pad_internal_chain),
2110         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
2111         (gst_ogg_demux_deactivate_current_chain),
2112         (gst_ogg_demux_activate_chain), (gst_ogg_demux_do_seek),
2113         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_info),
2114         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
2115         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
2116         Use GstSegment infrastructure to remove duplicated code
2117         and handle more seek cases correctly.
2118
2119 2006-02-28  Wim Taymans  <wim@fluendo.com>
2120
2121         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2122         (gst_ffmpegcsp_transform):
2123         Don't ignore return code from ffmpeg convert function.
2124
2125         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
2126         Split out some long statements to ease debugging.
2127
2128 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
2129
2130         * ext/libvisual/visual.c: (gst_visual_init),
2131         (gst_vis_src_negotiate), (get_buffer), (plugin_init):
2132         Don't use gst_pad_use_fixed_caps, because it prevents downstream from
2133         being able to renegotiate the size. Instead, use the negotiation
2134         algorithm from the goom plugin to pick an initial output caps. 
2135
2136         Also, allow theoretical libvisual plugins that might support non-GL 
2137         output even if they also do GL.
2138
2139 2006-02-26  Julien MOUTTE  <julien@moutte.net>
2140
2141         * ext/libvisual/visual.c: (gst_visual_init),
2142         (gst_visual_src_setcaps), (get_buffer), (gst_visual_chain),
2143         (plugin_init): Load only non GL plugins. Fix some memleaks and 
2144         possible negotiation issues.
2145
2146 2006-02-25  Julien MOUTTE  <julien@moutte.net>
2147
2148         * gst-libs/gst/tag/tag.h: Adding Annodex tags here.
2149
2150 2006-02-24  Michael Smith  <msmith@fluendo.com>
2151
2152         * gst/typefind/gsttypefindfunctions.c: (mpeg4_video_type_find),
2153         (cmml_type_find), (plugin_init):
2154           Fix CMML type find function to not require a specific minor version
2155           of the CMML header.
2156
2157           Add an MPEG4 video elementary stream typefind function.
2158
2159 2006-02-04  Michael Smith  <msmith@fluendo.com>
2160
2161         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_parse_skeleton_fishead),
2162         (gst_ogg_pad_parse_skeleton_fisbone), (gst_ogg_pad_query_convert),
2163         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
2164         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
2165         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_collect_chain_info),
2166         (gst_ogg_demux_change_state), (gst_annodex_granule_to_time):
2167           Annodex support in ogg demuxer. Doesn't do very much without the
2168           other annodex patches (to come).
2169
2170 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
2171
2172         Patch by: Fabrizio Gennari <fabrizio dot get at tiscali dot it>
2173
2174         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
2175           Pick up palette for MS video v1 (#327028)
2176
2177 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
2178
2179         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2180         (gst_ffmpegcsp_caps_remove_format_info),
2181         (gst_ffmpegcsp_get_unit_size):
2182           The 'palette_data' field from incoming RGB caps shouldn't be
2183           proxied on outgoing YUV caps; also, restrict unit size
2184           adjustment in case of paletted data only to the unit that
2185           actually has a palette. Fixes #330711.
2186
2187 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
2188
2189         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
2190         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
2191         (gst_ffmpegcsp_finalize), (gst_ffmpegcsp_class_init),
2192         (gst_ffmpegcsp_get_unit_size):
2193           Plug some memory leaks.
2194
2195 2006-02-24  Tim-Philipp Müller  <tim at centricular dot net>
2196
2197         * sys/ximage/Makefile.am:
2198         * sys/xvimage/Makefile.am:
2199           Add some _CFLAGS and _LIBS that seem to be missing
2200           and/or required for Cygwin (see #317048).
2201
2202 2006-02-22  Wim Taymans  <wim@fluendo.com>
2203
2204         * ext/alsa/gstalsasrc.c:
2205         Fix description as pointed out by caugier.
2206
2207 2006-02-22  Tommi Myöhänen  <ext-tommi do myohanen at nokia dot com>
2208
2209         Reviewed by : Edward Hervey  <edward@fluendo.com>
2210
2211         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
2212         (qt_type_find):
2213         Better 3gp typefinding (#331526).
2214
2215 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
2216
2217         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
2218           Don't send EOS event here, the base class will send one for us.
2219
2220         * gst/playback/gstplaybasebin.c: (prepare_output):
2221           Subpictures without video stream aren't allowed either.
2222         
2223         * gst/subparse/gstsubparse.c: (gst_subparse_type_find):
2224           Fix debug statement copy'n'paste-o.
2225
2226 2006-02-21  Tim-Philipp Müller  <tim at centricular dot net>
2227
2228         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume):
2229           Fix issues with mixer keeping state when muting/unmuting
2230           and when changing the volume whilst muted (see #331763
2231           and #331765).
2232
2233 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
2234
2235         * gst/subparse/gstsubparse.c: (subrip_unescape_formatting),
2236         (parse_subrip), (gst_sub_parse_format_autodetect):
2237           Set right caps given that we send escaped text. Also,
2238           honour <i></i>, <b></b> and <u></u> markers that can be found
2239           in .srt files (fixes #310202).
2240
2241 2006-02-20  Tim-Philipp Müller  <tim at centricular dot net>
2242
2243         * gst-libs/gst/audio/mixerutils.c:
2244         (element_factory_rank_compare_func):
2245           Make order in which elements are tried more determinable.
2246
2247 2006-02-20  Julien MOUTTE  <julien@moutte.net>
2248
2249         * gst/playback/gstdecodebin.c: (get_our_ghost_pad),
2250         (remove_element_chain), (cleanup_decodebin),
2251         (gst_decode_bin_change_state): Make decodebin reusable by
2252         fixing remove_element_chain first and then introduce a
2253         cleaner in state change to ->NULL. (Closes #331678)
2254
2255 2006-02-19  Wim Taymans  <wim@fluendo.com>
2256
2257         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_open_file):
2258         use 0666 mask when creating files so umask gets applied
2259         correctly. Fixes #331295.
2260
2261 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
2262
2263         * gst/subparse/Makefile.am:
2264         * gst/subparse/gstssaparse.c: (gst_ssa_parse_base_init),
2265         (gst_ssa_parse_dispose), (gst_ssa_parse_init),
2266         (gst_ssa_parse_class_init), (gst_ssa_parse_src_event),
2267         (gst_ssa_parse_sink_event), (gst_ssa_parse_setcaps),
2268         (gst_ssa_parse_remove_override_codes), (gst_ssa_parse_parse_line),
2269         (gst_ssa_parse_chain), (gst_ssa_parse_change_state):
2270         * gst/subparse/gstssaparse.h:
2271         * gst/subparse/gstsubparse.c: (plugin_init):
2272           Add very basic parser for SSA subtitle streams (as often
2273           found in matroska files).
2274
2275 2006-02-19  Tim-Philipp Müller  <tim at centricular dot net>
2276
2277         * gst/playback/gstdecodebin.c: (mimetype_is_raw):
2278           That should be text/x-pango-markup, not text/x-pango-layout.
2279
2280 2006-02-19  Julien MOUTTE  <julien@moutte.net>
2281
2282         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize):
2283         Polishing.
2284
2285 2006-02-19  Julien MOUTTE  <julien@moutte.net>
2286
2287         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
2288         (gst_text_overlay_finalize), (gst_text_overlay_init),
2289         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
2290         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
2291         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
2292         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
2293         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
2294         Fix state change deadlock.
2295
2296 2006-02-19  Julien MOUTTE  <julien@moutte.net>
2297
2298         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
2299         (gst_text_overlay_finalize), (gst_text_overlay_init),
2300         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
2301         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
2302         (gst_text_overlay_text_event), (gst_text_overlay_video_event),
2303         (gst_text_overlay_pop_text), (gst_text_overlay_text_chain),
2304         (gst_text_overlay_video_chain), (gst_text_overlay_change_state):
2305         * ext/pango/gsttextoverlay.h: Fix seeking both for muxed formats
2306         and subtitles files.
2307
2308 2006-02-19  Julien MOUTTE  <julien@moutte.net>
2309
2310         * gst/playback/gstdecodebin.c: (mimetype_is_raw): pango layout
2311         should be considered as raw.
2312
2313 2006-02-19  Julien MOUTTE  <julien@moutte.net>
2314
2315         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
2316         (cb_probe):
2317         * gst/playback/gststreaminfo.h: Introduce language informations.
2318
2319 2006-02-18  Jan Schmidt  <thaytan@mad.scientist.com>
2320
2321         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
2322         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
2323         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
2324         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new):
2325         Set shared memory segments to be deleted as soon as we have attached,
2326         that way they get cleaned up automatically if we crash.
2327
2328 2006-02-18  Julien MOUTTE  <julien@moutte.net>
2329
2330         * ext/pango/gstclockoverlay.c: (gst_clock_overlay_get_text): 
2331         * ext/pango/gsttimeoverlay.c: (gst_time_overlay_get_text): Those
2332         functions are called with lock held.
2333
2334 2006-02-18  Julien MOUTTE  <julien@moutte.net>
2335
2336         * ext/pango/gsttextoverlay.c: (gst_text_overlay_base_init),
2337         (gst_text_overlay_finalize), (gst_text_overlay_init),
2338         (gst_text_overlay_setcaps), (gst_text_overlay_src_event),
2339         (gst_text_overlay_render_text), (gst_text_overlay_text_pad_link),
2340         (gst_text_overlay_text_pad_unlink), (gst_text_overlay_text_event),
2341         (gst_text_overlay_video_event), (gst_text_overlay_pop_text),
2342         (gst_text_overlay_text_chain), (gst_text_overlay_video_chain),
2343         (gst_text_overlay_change_state): Refactoring of textoverlay
2344         without collectpads. This now supports sparse subtitles coming
2345         from a demuxer instead of a sub file. Seeking is still broken 
2346         though. Need to discuss with wtay some more on how to handle
2347         seeking correctly.
2348         * ext/pango/gsttextoverlay.h:
2349         * gst/playback/gstplaybin.c: (setup_sinks): Support linking with
2350         subtitles coming from the demuxer.
2351
2352 2006-02-17  Wim Taymans  <wim@fluendo.com>
2353
2354         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_convert_src),
2355         (gst_vorbisenc_convert_sink):
2356         Use some more scaling functions.
2357
2358 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
2359
2360         * ext/cdparanoia/gstcdparanoiasrc.c:
2361         (gst_cd_paranoia_src_class_init), (gst_cd_paranoia_dummy_callback),
2362         (gst_cd_paranoia_paranoia_callback),
2363         (gst_cd_paranoia_src_signal_is_being_watched),
2364         (gst_cd_paranoia_src_read_sector):
2365         * ext/cdparanoia/gstcdparanoiasrc.h:
2366           Add back 'transport-error' and 'uncorrected-error' signals and
2367           make them actually be fired when bad stuff happens (#319340).
2368
2369 2006-02-17  Wim Taymans  <wim@fluendo.com>
2370
2371         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
2372         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
2373         (gst_ring_buffer_device_is_open), (gst_ring_buffer_acquire),
2374         (gst_ring_buffer_release), (gst_ring_buffer_set_flushing),
2375         (gst_ring_buffer_start), (gst_ring_buffer_pause_unlocked),
2376         (gst_ring_buffer_pause), (gst_ring_buffer_stop),
2377         (gst_ring_buffer_delay), (gst_ring_buffer_samples_done),
2378         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
2379         (gst_ring_buffer_commit), (gst_ring_buffer_prepare_read),
2380         (gst_ring_buffer_clear):
2381         Small cleanups.
2382         Added some G_LIKELY.
2383
2384 2006-02-17  Wim Taymans  <wim@fluendo.com>
2385
2386         * gst-libs/gst/audio/TODO:
2387         Update TODO
2388
2389         * gst-libs/gst/audio/gstbaseaudiosink.c:
2390         (gst_base_audio_sink_get_offset):
2391         When trying to play samples ASAP and we don't have a
2392         previous sample, try to play at position 0 instead of
2393         an invalid position.
2394
2395 2006-02-17  Wim Taymans  <wim@fluendo.com>
2396
2397         * ext/alsa/gstalsasink.c: (gst_alsasink_open),
2398         (gst_alsasink_reset):
2399         Also release lock when we get an error in _reset();
2400         fix an error message.
2401
2402 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
2403
2404         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
2405         (gst_alsasink_init), (get_channel_free_structure),
2406         (caps_add_channel_configuration), (gst_alsasink_getcaps),
2407         (gst_alsasink_close):
2408         * ext/alsa/gstalsasink.h:
2409           Add support for more than 2 channels (#326720).
2410
2411 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
2412
2413         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
2414           Set codec_name for WAVEFORMATEX as well. When we have 'normal PCM'
2415           with 4 or 6 channels, assume a default channel layout to make things
2416           work (not sure there's anything else we can do in those cases).
2417
2418 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
2419
2420         * gst-libs/gst/audio/multichannel.c:
2421           Minor docs fix.
2422
2423         * gst-libs/gst/riff/Makefile.am:
2424         * gst-libs/gst/riff/riff-ids.h:
2425         * gst-libs/gst/riff/riff-media.c:
2426         (gst_riff_wavext_add_channel_layout), (gst_riff_create_audio_caps):
2427           Add support for WAVEFORMATEX, eg. PCM audio with more than two
2428           channels and a channel layout map.
2429           
2430 2006-02-16  Mathieu Garcia <b0nk at free dot fr>
2431
2432         Reviewed by Edward Hervey  <edward@fluendo.com>
2433
2434         * gst/videoscale/vs_scanline.c: (vs_scanline_resample_nearest_RGBA): 
2435         C-level optimization of the RGBA nearest neighbour function.
2436         Eventually this might end up in liboil with vectorized versions.
2437
2438 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
2439
2440         * gst-libs/gst/audio/multichannel.c:
2441         (gst_audio_get_channel_positions):
2442           When we have more than 2 channels, but no channel layout is
2443           specified in the caps, return some default channel layout
2444           to the caller and warn about about a possibly buggy element
2445           (could be buggy filtercaps as well of course) (#317038).
2446
2447 2006-02-16  Tim-Philipp Müller  <tim at centricular dot net>
2448
2449         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
2450           Add gst-libs/gst/cdda to list of lib search paths.
2451
2452 2006-02-15  Andy Wingo  <wingo@pobox.com>
2453
2454         * ext/ogg/gstoggmux.c (gst_ogg_mux_collected): When updating
2455         timestamp, update timestamp_end as well. Fixes a bugaboo. I hope
2456         to the Lord Jesus that I do not have to touch the ogg muxer ever
2457         again.
2458
2459 2006-02-15  Edward Hervey  <edward@fluendo.com>
2460
2461         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
2462         quicktime movie files can also contain 'uuid' atoms.
2463
2464 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
2465
2466         * gst/audioconvert/plugin.c: (plugin_init):
2467           Register the GstAudioChannelPosition enum type with the type
2468           system in the plugin_init function, so that it is known before
2469           any element actually makes use of multi-channel stuff. This is
2470           required for example if one wants to be able to deserialise/use
2471           a caps string with channel positions before any pipeline has
2472           been setup and started, like with gst-launch.
2473
2474 2006-02-14  Wim Taymans  <wim@fluendo.com>
2475
2476         * gst-libs/gst/audio/gstringbuffer.c:
2477         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_delay),
2478         (gst_ring_buffer_samples_done), (wait_segment),
2479         (gst_ring_buffer_commit), (gst_ring_buffer_clear):
2480         Add some compiler G_(UN_)LIKELY help.
2481         SIGNAL the ringbuffer waiters when going to PAUSED as well to
2482         make sure they can exit their functions. Should fix #330748
2483
2484 2006-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
2485
2486         * Makefile.am:
2487         * configure.ac:
2488         * win32/MANIFEST:
2489         * win32/common/_stdint.h:
2490           Windows does not have long long; copy the generated _stdint.h
2491         * win32/common/interfaces-enumtypes.c:
2492         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
2493         (gst_mixer_track_flags_get_type),
2494         (gst_tuner_channel_flags_get_type):
2495         * win32/common/multichannel-enumtypes.c:
2496         (gst_audio_channel_position_get_type):
2497           update
2498
2499 2006-02-13  Wim Taymans  <wim@fluendo.com>
2500
2501         * gst-libs/gst/audio/gstbaseaudiosink.c:
2502         (gst_base_audio_sink_get_time), (gst_base_audio_sink_preroll),
2503         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2504         Always sync on first sample we receive when starting.
2505
2506 2006-02-13  Wim Taymans  <wim@fluendo.com>
2507
2508         * gst/playback/gstplaybin.c: (gen_vis_element):
2509         Update vis bin docs.
2510         Move queue after tee so we don't queue video buffers but
2511         audio samples instead. Fixes problems where the video queue
2512         is filled and the audio queue empty.
2513
2514 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
2515
2516         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_create):
2517           No need to push an EOS event here, GstBaseSrc will do that for us
2518           when we return FLOW_UNEXPECTED.
2519           
2520 2006-02-12  Wim Taymans  <wim@fluendo.com>
2521
2522         * gst-libs/gst/audio/gstbaseaudiosink.c:
2523         (gst_base_audio_sink_get_time), (gst_base_audio_sink_setcaps),
2524         (gst_base_audio_sink_drain), (gst_base_audio_sink_preroll),
2525         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
2526         Use scale functions when possible.
2527         Fix error messages.
2528         Free clockid when after waiting for EOS.
2529         Use G_(UN_)LIKLY when it makes sense.
2530         Fix sample clipping bug found by Arwed v. Merkatz fixes #330789.
2531
2532 2006-02-12  Edward Hervey  <edward@fluendo.com>
2533
2534         * gst/playback/gstplaybasebin.c: (prepare_output): 
2535         Remove stray semi-colon (fixes #330888).
2536
2537 2006-02-12  Jan Schmidt  <thaytan@mad.scientist.com>
2538
2539         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
2540         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls):
2541         Fix up the XShm call testing so that we catch errors, and don't
2542         cause new ones by attempting to detach from a segment we failed
2543         to attach to. Fixes #312439.
2544
2545 2006-02-10  Edward Hervey  <edward@fluendo.com>
2546
2547         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
2548         Added flv file typefind (video/x-flv).
2549
2550 2006-02-10  Edward Hervey  <edward@fluendo.com>
2551
2552         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
2553         (gst_riff_create_video_template_caps):
2554         Added FLV1 <==> 'video/x-flash-video,flvversion=1' conversion.
2555         Also added the caps to the default set of riff video caps.
2556
2557 2006-02-09  Andy Wingo  <wingo@pobox.com>
2558
2559         * ext/ogg/gstoggmux.c (GstOggPad): Keep track of both the start
2560         time and the end time of the last packet in the page.
2561         (gst_ogg_mux_pad_queue_page): In addition to setting the timestamp
2562         on the pages in our queue, set the duration as well. Reflow a
2563         debug statement.
2564         (gst_ogg_mux_collected): Keep track of GstOggPad->timestamp_end.
2565         Fixes bad muxing order.
2566
2567 2006-02-09  Thomas Vander Stichele  <thomas at apestaart dot org>
2568
2569         * gst-libs/gst/rtp/gstbasertppayload.c:
2570         (gst_basertppayload_setcaps), (gst_basertppayload_push):
2571           update seqnum before setting it on the packet; this makes sure
2572           that the timestamp and seqnum properties match after pushing
2573           a buffer
2574
2575 2006-02-09  Andy Wingo  <wingo@pobox.com>
2576
2577         * gst-libs/gst/audio/gstringbuffer.c
2578         (gst_ring_buffer_samples_done): Cast to guint64, fixes an integer
2579         overflow after 13.5 hours of recording. Kapow!
2580
2581         * ext/alsa/gstalsasrc.c (gst_alsasrc_delay): Clamp the delay to
2582         the buffer size -- we don't care about underrun/overrun reporting
2583         right now, just need to return a useful value.
2584
2585 2006-02-09  Jan Schmidt  <thaytan@mad.scientist.com>
2586
2587         * configure.ac:
2588           Back to CVS
2589
2590 === release 0.10.3 ===
2591
2592 2006-02-09  Jan Schmidt <thaytan@mad.scientist.com>
2593
2594         * configure.ac:
2595           releasing 0.10.3, "Under Pressure"
2596
2597 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
2598
2599         * configure.ac:
2600         Drat. Bump libtool version number for new API.
2601         Prelease 0.10.2.3 (of 0.10.3)
2602
2603 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
2604
2605         * configure.ac:
2606         * win32/common/config.h:
2607         0.10.2.2 prerelease (of 0.10.3).
2608
2609 2006-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
2610
2611         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_create):
2612           Revert Andy's newsegment change pending a more correct
2613           fix.
2614
2615 2006-02-08  Thomas Vander Stichele  <thomas at apestaart dot org>
2616
2617         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
2618         (qt_type_find), (plugin_init):
2619           detect more files as 3gp
2620           group and reorder the iso file formats
2621
2622 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2623
2624         * ext/vorbis/vorbis.c: (plugin_init):
2625           Register musicbrainz tags, so apps don't have to.
2626
2627 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2628
2629         * gst-libs/gst/tag/gstvorbistag.c: (gst_tag_from_vorbis_tag),
2630         (gst_tag_to_vorbis_tag):
2631           Make sure we called gst_tag_register_musicbrainz_tags()
2632           before possibly mapping a vorbiscomment string from/to a
2633           musicbrainz tag.
2634
2635 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2636
2637         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
2638           In case we can't find the required number of consecutive
2639           mpeg audio frames to positively identify an MPEG audio
2640           stream, check if there's at least a valid mpeg audio
2641           frame right at offset 0 and if so suggest mpeg/audio
2642           caps with a very low probability (#153004).
2643
2644 2006-02-07  Andy Wingo  <wingo@pobox.com>
2645
2646         * gst/tcp/gsttcpclientsrc.c (gst_tcp_client_src_create): Switch to
2647         a TIME segment if we get timestamped buffers. Requires recent
2648         fixes in core to work properly.
2649
2650 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2651
2652         * gst/playback/gstplaybasebin.c: (prepare_output):
2653           Don't print the URI as part of the error message, it
2654           makes error dialogs look rather ugly, especially if
2655           the URI is very long or has characters in it that
2656           need escaping.
2657
2658 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2659
2660         * gst/playback/gstplaybasebin.c: (prepare_output):
2661           Error out if we have only text or subtitles, but nothing
2662           else. Also error out if we have subtitles but no video
2663           stream.
2664
2665 2006-02-07  Tim-Philipp Müller  <tim at centricular dot net>
2666
2667         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_create):
2668           Treat GNOME_VFS_RESULT_EOF as EOS, not as error (#329194).
2669           Post an error message on the bus when we encounter an
2670           error, which will hopefully be more meaningful than the
2671           'Internal Flow Error' message users get to see if we
2672           just return GST_FLOW_ERROR.
2673
2674 2006-02-07  Andy Wingo  <wingo@pobox.com>
2675
2676         * configure.ac (GST_MAJORMINOR): Update core version req to
2677         0.10.2.2, for the collectpads API addition (#330244).
2678
2679 2006-02-06  Tim-Philipp Müller  <tim at centricular dot net>
2680
2681         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
2682           Return FALSE from plugin_init() when GnomeVFS can't
2683           be initialised for some reason (#328423).
2684
2685 2006-02-06  Julien MOUTTE  <julien@moutte.net>
2686
2687         * ext/pango/gsttextoverlay.c: (gst_text_overlay_src_event): 
2688         Stick to seeking theory until i find the bug.
2689         * gst/subparse/gstsubparse.c: (parse_subrip): Fix debug.
2690
2691 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
2692
2693         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
2694         (theora_enc_finalize), (theora_enc_sink_setcaps),
2695         (theora_set_header_on_caps), (theora_enc_chain),
2696         (theora_enc_change_state):
2697         * tests/check/pipelines/theoraenc.c: (GST_START_TEST):
2698           Make theoraenc and the tests leak free. Like, really.
2699
2700 2006-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
2701
2702         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
2703         (theora_enc_finalize), (theora_enc_sink_setcaps):
2704           Add a finalize method to ensure we clean up state even if
2705           someone omitted the state change back to NULL.
2706
2707         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1),
2708         (gst_vorbisenc_chain):
2709           Free some more leaked bits.
2710
2711         * tests/check/pipelines/theoraenc.c: (start_pipeline),
2712         (stop_pipeline):
2713           Wait for state changes to happen if they're ASYNC.
2714
2715           This ought to teach those fancy pants buildbots a lesson.
2716
2717 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
2718
2719         * gst-libs/gst/tag/gstid3tag.c:
2720           Add mapping for ID3 International Standard Recording Code
2721           tag "TSRC"
2722
2723 2006-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
2724
2725         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_metadata_set1):
2726           Don't leak tag names.
2727
2728 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2729
2730         * docs/libs/gst-plugins-base-libs-docs.sgml:
2731         * docs/libs/gst-plugins-base-libs-sections.txt:
2732         * gst-libs/gst/tag/gstid3tag.c:
2733         * gst-libs/gst/tag/gstvorbistag.c:
2734         * gst-libs/gst/tag/tags.c:
2735           Split libgsttag docs into multiple sections.
2736
2737 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2738
2739         * docs/libs/Makefile.am:
2740         * docs/libs/gst-plugins-base-libs-docs.sgml:
2741         * docs/libs/gst-plugins-base-libs-sections.txt:
2742         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_from_id3_tag):
2743         * gst-libs/gst/tag/gstvorbistag.c:
2744         * gst-libs/gst/tag/tag.h:
2745         * gst-libs/gst/tag/tags.c:
2746           Add libgsttag to the docs.
2747
2748 2006-02-05  Julien MOUTTE  <julien@moutte.net>
2749
2750         * ext/pango/gsttextoverlay.c: (gst_text_overlay_finalize),
2751         (gst_text_overlay_init), (gst_text_overlay_src_event),
2752         (gst_text_overlay_collected): Fix clockoverlay.
2753
2754 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2755
2756         * docs/libs/compiling.sgml:
2757           Fix typo: it's pkg-config, not pkg-gconfig
2758
2759         * docs/libs/gst-plugins-base-libs-docs.sgml:
2760         * docs/libs/gst-plugins-base-libs-sections.txt:
2761         * docs/libs/tmpl/gstgconf.sgml:
2762           There is no libgstgconf in 0.10, remove it
2763           from the docs.
2764
2765 2006-02-05  Julien MOUTTE  <julien@moutte.net>
2766
2767         * docs/libs/tmpl/gstcolorbalance.sgml: Updated.
2768         * ext/pango/gsttextoverlay.c: (gst_text_overlay_init),
2769         (gst_text_overlay_src_event), (gst_text_overlay_collected):
2770         * gst/subparse/gstsubparse.c: (gst_sub_parse_dispose),
2771         (gst_sub_parse_class_init), (gst_sub_parse_init),
2772         (gst_sub_parse_src_event), (parse_mdvdsub), (parse_subrip),
2773         (parse_mpsub), (parser_state_init), (handle_buffer),
2774         (gst_sub_parse_chain), (gst_sub_parse_sink_event), (plugin_init):
2775         * gst/subparse/gstsubparse.h: Introduce seeking code.
2776
2777 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2778
2779         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
2780           Add comment about LANGUAGE tag inconsistency (we want
2781           ISO-639-1, but extract three-letter identifiers?)
2782
2783         * po/POTFILES.in:
2784           Add two translatable files.
2785
2786 2006-02-05  Tim-Philipp Müller  <tim at centricular dot net>
2787
2788         * gst-libs/gst/tag/Makefile.am:
2789         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add):
2790         * gst-libs/gst/tag/tag.h:
2791         * gst-libs/gst/tag/tags.c:
2792         (gst_tag_register_musicbrainz_tags_internal),
2793         (gst_tag_register_musicbrainz_tags):
2794           Forward-port some tags stuff from the 0.8 branch. This is
2795           mostly the addition of musicbrainz tags and their mapping
2796           to vorbistags, and a vorbistag mapping of the language tag.
2797
2798 2006-02-05  Julien MOUTTE  <julien@moutte.net>
2799
2800         * gst/playback/gstplaybin.c: (gen_text_element): Fix broken code
2801         refactoring.
2802
2803 2006-02-04  David Schleef  <ds@schleef.org>
2804
2805         * ext/ogg/gstoggmux.c:
2806         * gst/typefind/gsttypefindfunctions.c:
2807           Add Dirac typefinding and add dirac format to oggmux.
2808
2809 2006-02-03  Tim-Philipp Müller  <tim at centricular dot net>
2810
2811         * gst/playback/gstdecodebin.c: (try_to_link_1):
2812           Don't put essential function call into
2813           g_return_*() macro, otherwise it'll all be
2814           replaced by NOOPs when compiling with
2815           G_DISABLE_CHECKS defined.
2816
2817 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
2818
2819         * ext/ogg/gstoggdemux.c:
2820         * ext/ogg/gstoggparse.c:
2821         * gst/tcp/gsttcpserversink.c:
2822         * sys/v4l/v4lsrc_calls.c:
2823         * sys/v4l/v4lsrc_calls.h:
2824         Just make it compile with --disable-gst-debug.
2825
2826 2006-02-03  Wim Taymans  <wim@fluendo.com>
2827
2828         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
2829         (gst_alsasink_class_init), (gst_alsasink_init),
2830         (gst_alsasink_write), (gst_alsasink_reset):
2831         * ext/alsa/gstalsasink.h:
2832         Add lock to protect alsa calls.
2833         Implement reset to flush samples ASAP, does not work
2834         with dmix though.
2835
2836 2006-02-02  Wim Taymans  <wim@fluendo.com>
2837
2838         * gst-libs/gst/audio/gstbaseaudiosink.c:
2839         (gst_base_audio_sink_provide_clock):
2840         Ugh.. getting late I guess...
2841
2842 2006-02-02  Wim Taymans  <wim@fluendo.com>
2843
2844         * gst-libs/gst/audio/gstbaseaudiosink.c:
2845         (gst_base_audio_sink_provide_clock),
2846         (gst_base_audio_sink_set_property),
2847         (gst_base_audio_sink_get_property), (gst_base_audio_sink_render):
2848         Don't try to provide a clock when we are not negotiated since
2849         we might not be able to make it run.
2850
2851 2006-02-02  Tim-Philipp Müller  <tim at centricular dot net>
2852
2853         * gst/playback/gstdecodebin.c: (try_to_link_1):
2854           Unlinking two source pads is ... hard.
2855
2856 2006-02-02  Wim Taymans  <wim@fluendo.com>
2857
2858         * gst-libs/gst/audio/TODO:
2859         Updated.
2860
2861         * gst-libs/gst/audio/gstbaseaudiosink.c:
2862         (gst_base_audio_sink_drain), (gst_base_audio_sink_event):
2863         On EOS, wait till the last sample is played before posting EOS.
2864
2865 2006-02-01  Philippe Kalaf <burger at speedy dot org>
2866
2867         * gst-libs/gst/rtp/gstbasertpdepayload.c:
2868           Patch by Kai Vehmanen : Adds ability to enable newsegment bypass by
2869           setting queue_delay to zero. Also avoid thread being started if
2870           queue_delay is zero.
2871
2872 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
2873
2874         * gst/playback/test6.c: (new_decoded_pad_cb), (show_error), (main):
2875           Make test work again by connecting fakesinks to each decoded pad,
2876           which makes the pipeline wait until each fakesink has a buffer
2877           queued before going to PAUSED state. At that point we know the
2878           decodebin pads are negotiated.
2879
2880 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
2881
2882         * gst-libs/gst/cdda/gstcddabasesrc.c: (gst_cdda_base_src_query),
2883         (gst_cdda_base_src_handle_event):
2884         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audio_test_src_query):
2885           Pass unhandled queries to the parent class's query function.
2886
2887 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
2888
2889         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_types),
2890         (gst_ogg_pad_src_query):
2891         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
2892         * ext/theora/theoradec.c: (theora_dec_src_query),
2893         (theora_dec_sink_query):
2894         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
2895         (vorbis_dec_sink_query):
2896         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
2897         (gst_vorbisenc_sink_query):
2898         * gst/adder/gstadder.c: (gst_adder_query):
2899           Pass unhandled queries upstream instead of just
2900           dropping them (#326447). Also, fix supported
2901           query types list for some elements.
2902
2903 2006-02-01  Tim-Philipp Müller  <tim at centricular dot net>
2904
2905         * gst/typefind/gsttypefindfunctions.c: (au_type_find),
2906         (paris_type_find), (ilbc_type_find), (plugin_init):
2907           Fix typefinding for audio/x-au, audio/x-paris and
2908           audio/iLBC-sh. We cannot use the START_WITH macros
2909           here, because there can only be one typefind factory
2910           with the same name (caps), so the second one would
2911           replace the first one and the first one would never
2912           be called when doing typefinding (see #161712).
2913           
2914
2915 2006-01-31  Wim Taymans  <wim@fluendo.com>
2916
2917         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
2918         (vorbis_handle_header_packet), (vorbis_dec_push),
2919         (vorbis_handle_data_packet):
2920         Use scale_int when we can, add some more scaling.
2921         Check packettype before parsing it.
2922
2923 2006-01-31  Wim Taymans  <wim@fluendo.com>
2924
2925         * ext/theora/theoradec.c: (_theora_granule_time),
2926         (theora_dec_src_convert), (theora_dec_sink_convert):
2927         Call right _scale functions.
2928         Use parameter instead of some other random value.
2929
2930 2006-01-31  Wim Taymans  <wim@fluendo.com>
2931
2932         * ext/theora/theoradec.c: (_theora_granule_frame),
2933         (_theora_granule_time), (_inc_granulepos),
2934         (theora_dec_src_convert), (theora_dec_sink_convert),
2935         (theora_handle_type_packet), (theora_handle_data_packet),
2936         (theora_dec_chain):
2937         Use higher precision timestamps calculation.
2938         Convert some other conversions to _scale.
2939
2940 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
2941
2942         * gst/audiotestsrc/gstaudiotestsrc.c:
2943         (gst_audio_test_src_create_sine_table), (plugin_init):
2944         * gst/volume/gstvolume.c: (plugin_init):
2945           initialize gst_controller before using
2946
2947 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
2948
2949         * tests/check/pipelines/theoraenc.c:
2950         * tests/check/pipelines/vorbisenc.c:
2951         Define constant using G_GINT64_CONSTANT to avoid errors when
2952         passing it around - otherwise it gets truncated to 32 bits.
2953
2954         Fixes failing tests.
2955
2956 2006-01-31  Andy Wingo  <wingo@pobox.com>
2957
2958         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_set_caps): Don't segfault if the
2959         caps being set doesn't have a framerate value. Basically a stopgap
2960         measure.
2961
2962         * ext/ogg/gstoggmux.c (GST_BUFFER_END_TIME): New macro. Not
2963         technically correct enough to put into core though.
2964         (gst_ogg_mux_dequeue_page): Use END_TIME instead of TIMESTAMP +
2965         DURATION. Fixes theoraenc ! oggmux.
2966
2967         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Fixate to the nearest
2968         fraction, not double.
2969
2970 2006-01-31  Sebastien Moutte  <sebastien@moutte.net>
2971
2972         * win32/vs7:
2973         add vs7 project files created by Sergey Scobich
2974
2975 2006-01-30  Sebastien Moutte  <sebastien@moutte.net>
2976
2977         * win32/vs8:
2978         add vs8 project files created by Sergey Scobich
2979         
2980 2006-01-30  Andy Wingo  <wingo@pobox.com>
2981
2982         * ext/ogg/gstoggmux.c (gst_ogg_mux_dequeue_page): Compare
2983         timestamp + duration, not just timestamp -- ogg pages should be
2984         ordered by stop time. Necessary fix given the change in vorbis
2985         timestamps.
2986
2987         * ext/theora/theoraenc.c (theora_enc_sink_setcaps) 
2988         (gst_theora_enc_init): Pull the granule shift out of the encoder.
2989         (granulepos_add): New function, handles the messiness of adjusting
2990         granulepos values.
2991         (theora_buffer_from_packet):
2992         (theora_enc_chain):
2993         (theora_enc_sink_event): Use granulepos_add, not +.
2994
2995         * tests/check/pipelines/theoraenc.c
2996         (check_buffer_granulepos_from_starttime): Just check the frame
2997         count, not the actual granulepos -- we can't dictate to the
2998         encoder when it should be placing keyframes.
2999
3000 2006-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
3001
3002         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_start):
3003           SERVICE_NOT_AVAILABLE happens for example when you're trying to
3004           play an http:// stream from a server that's not serving
3005
3006 2006-01-30  Andy Wingo  <wingo@pobox.com>
3007
3008         * tests/check/pipelines/vorbisenc.c (TIMESTAMP_OFFSET): 
3009         * tests/check/pipelines/theoraenc.c (TIMESTAMP_OFFSET): Totally
3010         remove the UINT64_CONSTANT macro, doesn't appear to be needed or
3011         available.
3012
3013         * ext/theora/gsttheoraenc.h:
3014         * ext/theora/theoraenc.c: Same changes as were done to vorbisenc,
3015         although theoraenc was timestamping correctly. Added handling of
3016         streams that start with nonzero timestamps.
3017
3018         * tests/check/Makefile.am:
3019         * tests/check/pipelines/theoraenc.c: New file, basically does same
3020         tests as vorbisenc.
3021
3022         * tests/check/pipelines/vorbisenc.c: I claim these bugs.
3023
3024 2006-01-30  Wim Taymans  <wim@fluendo.com>
3025
3026         * gst-libs/gst/audio/gstaudiosink.c:
3027         (gst_audioringbuffer_class_init), (gst_audioringbuffer_release),
3028         (gst_audioringbuffer_pause):
3029         Implement pause that does not wait for completion.
3030
3031         * gst-libs/gst/audio/gstbaseaudiosink.c:
3032         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3033         Don't drop buffers when going to PAUSED but perform preroll on
3034         remaining samples now that core base class supports this.
3035
3036         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_release),
3037         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_stop),
3038         (gst_ring_buffer_commit):
3039         Pause should not signal waiters.
3040         Implement return value of _commit correctly.
3041
3042 2006-01-30  Andy Wingo  <wingo@pobox.com>
3043
3044         * tests/check/Makefile.am (check_vorbis): Add pipelines/vorbisenc.
3045
3046         * ext/vorbis/vorbisenc.c (gst_vorbisenc_buffer_from_packet): Logic
3047         updated to timestamp from the first sample, not the last.
3048         (gst_vorbisenc_buffer_from_header_packet): New function, takes
3049         special care of granulepos and timestamp for header packets.
3050         (gst_vorbisenc_chain): Reflow, fix some leaks, and handle the case
3051         when the first buffer has a nonzero timestamp.
3052
3053         * ext/vorbis/vorbisenc.h (GstVorbisEnc.granulepos_offset)
3054         (GstVorbisEnc.subgranule_offset): New members. Take care of the
3055         case when the first audio buffer we get has a nonzero timestamp.
3056         (GstVorbisEnc.next_ts): Renamed from prev_ts, because now we
3057         properly timestamp vorbis buffers with the time of the first
3058         sample, not the last.
3059         
3060         * ext/vorbis/vorbisenc.c (granulepos_to_clocktime): Renamed from
3061         vorbis_granule_time_copy -- now it takes the granule/subgranule
3062         offset into account.
3063
3064         * tests/check/pipelines/vorbisenc.c: New test for correctness of
3065         timestamps, durations, and granulepos on buffers produced by
3066         vorbisenc.
3067
3068 2006-01-30  Jan Schmidt  <thaytan@mad.scientist.com>
3069
3070         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
3071         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
3072           Patch from Eric Jonas to support conversions to/from UYVY 
3073           (Fixes: #324626)
3074
3075 2006-01-30  Julien MOUTTE  <julien@moutte.net>
3076
3077         * gst/playback/gstplaybasebin.c: (group_commit), (queue_overrun),
3078         (setup_subtitle), (setup_source), (set_active_source):
3079         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
3080         (gen_text_element), (gen_audio_element), (gen_vis_element),
3081         (remove_sinks), (add_sink), (setup_sinks): Implement subtitles.
3082
3083 2006-01-29  Sebastien Moutte  <sebastien@moutte.net>
3084
3085         * gst-libs/gst/audio/audio.h: (GST_CLOCK_TIME_TO_FRAMES)
3086         * gst-libs/gst/audio/gstbaseaudiosink.c: (gst_base_audio_sink_render)
3087                 use gst_guint64_to_gdouble to be compliant with vs6
3088         * gst/playback/gstdecodebin.c: (try_to_link_1)
3089         * gst/videorate/videorate.c: (gst_video_rate_blank_data)
3090                 use G_GINT64_CONSTANT for int64 constants
3091         * win32/common/libgstinterfaces.def:
3092                 export some symbols (gst_mixer_get_type,gst_mixer_track_get_type)
3093         * win32/vs6:
3094                 update and add new project files
3095                 
3096 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3097
3098         * Makefile.am:
3099         * win32/MANIFEST:
3100         * win32/common/interfaces-enumtypes.c:
3101         (gst_color_balance_type_get_type), (gst_mixer_type_get_type),
3102         (gst_mixer_track_flags_get_type),
3103         (gst_tuner_channel_flags_get_type):
3104         * win32/common/interfaces-enumtypes.h:
3105         * win32/common/multichannel-enumtypes.c:
3106         (gst_audio_channel_position_get_type):
3107         * win32/common/multichannel-enumtypes.h:
3108           add a win32-update rule like in core, and copy over enumtypes files
3109
3110 2006-01-29  Thomas Vander Stichele  <thomas at apestaart dot org>
3111
3112         * win32/MANIFEST:
3113         * win32/common/config.h:
3114         * win32/common/config.h.in:
3115           add config files just like in core
3116
3117 2006-01-28  Tim-Philipp Müller  <tim at centricular dot net>
3118
3119         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format):
3120           Make gcc-4.1 happy (part of #327357).
3121
3122 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
3123
3124         * ext/alsa/gstalsasink.c: (gst_alsasink_init), (set_hwparams),
3125         (set_swparams), (gst_alsasink_prepare), (gst_alsasink_unprepare),
3126         (gst_alsasink_close), (gst_alsasink_write), (gst_alsasink_reset):
3127         * ext/alsa/gstalsasrc.c: (gst_alsasrc_init), (set_hwparams),
3128         (set_swparams), (gst_alsasrc_open), (gst_alsasrc_prepare),
3129         (gst_alsasrc_unprepare), (gst_alsasrc_read):
3130           Update all error messages.  All of them should either use
3131           the default translated message, or actually provide a
3132           translatable string.
3133           Make the string for channel count problems meaningful.
3134
3135 2006-01-28  Thomas Vander Stichele  <thomas at apestaart dot org>
3136
3137         * sys/v4l/v4l_calls.c: (gst_v4l_open):
3138           check for and throw RESOURCE_BUSY
3139
3140 2006-01-27  David Schleef  <ds@schleef.org>
3141
3142         * gst/videoscale/vs_scanline.c: Oops, *that's* why I never
3143           checked in this change -- it requires liboil features not
3144           in 0.3.6.  Revert parts.
3145
3146 2006-01-27  David Schleef  <ds@schleef.org>
3147
3148         * REQUIREMENTS:
3149         * configure.ac: update liboil requirement to 0.3.6
3150         * gst/videoscale/Makefile.am:
3151         * gst/videoscale/vs_scanline.c: liboilify
3152
3153 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
3154
3155         * ext/libvisual/visual.c: (get_buffer):
3156           When pad_alloc returns a GstFlowReturn other
3157           than GST_FLOW_OK, make sure it is passed upstream.
3158
3159 2006-01-27  Jan Schmidt  <thaytan@mad.scientist.com>
3160
3161         * ext/alsa/gstalsasink.c: (gst_alsasink_finalise),
3162         (gst_alsasink_class_init):
3163           Free the device name string.
3164
3165         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
3166         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_release_pad),
3167         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_clear_collectpads):
3168           Don't remove a pad from the collectpads structure until it
3169           is released - it's a request pad, and may receive data again
3170           if the element gets moved back to PLAYING state.
3171
3172         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
3173           Ensure we turn on double buffering on the Xv port, and
3174           set the colour key to something dark and mysterious that
3175           isn't black.
3176
3177 2006-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
3178
3179         * ext/alsa/gstalsaplugin.c: (plugin_init):
3180         * ext/cdparanoia/gstcdparanoiasrc.c:
3181         (gst_cd_paranoia_src_base_init), (plugin_init):
3182         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
3183         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init):
3184           - a library should not call setlocale. see "Libraries" node in
3185             gettext manual
3186           - make sure all plugins that use translation do bindtextdomain
3187             to point to the localedir
3188         * gst/playback/gstplaybin.c: (gen_vis_element), (add_sink),
3189         (setup_sinks), (plugin_init):
3190           all this, and check for NULL when creating sinks
3191
3192 2006-01-27  Julien MOUTTE  <julien@moutte.net>
3193
3194         * gst/subparse/gstsubparse.c: (gst_subparse_type_find),
3195         (plugin_init): Make typefinding of subtitles work again.
3196
3197 2006-01-26  Tim-Philipp Müller  <tim at centricular dot net>
3198
3199         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
3200         (mp3_type_frame_length_from_header), (mp3_type_find),
3201         (wavpack_type_find), (m4a_type_find), (ircam_type_find),
3202         (plugin_init):
3203           Backport a bunch of typefinding fixes from the 0.8 branch.
3204           Also, improve wavpack typefinding: if we can't peek the
3205           entire wavpack block, try to parse the bits we can get and
3206           see if we find what we're looking for in those.
3207
3208 2006-01-26  Julien MOUTTE  <julien@moutte.net>
3209
3210         * sys/ximage/ximagesink.c:
3211         (gst_ximagesink_calculate_pixel_aspect_ratio):
3212         * sys/xvimage/xvimagesink.c:
3213         (gst_xvimagesink_calculate_pixel_aspect_ratio): Handle some
3214         more cases of pixel aspect ratio.
3215
3216 2006-01-26  Edward Hervey  <edward@fluendo.com>
3217
3218         * gst/playback/gstdecodebin.c: (pad_probe):
3219         Also consider the flush-start and tag events as unblockers
3220         for the pad probes.
3221
3222 2006-01-26  Julien MOUTTE  <julien@moutte.net>
3223
3224         * gst/playback/gstplaybin.c: (gst_play_bin_init),
3225         (gst_play_bin_dispose), (gst_play_bin_vis_unblocked),
3226         (gst_play_bin_vis_blocked), (gst_play_bin_set_property): 
3227         On the fly visualisation switch, works disabling, enabling as
3228         well but it won't be able to enable vis in a playbin that was
3229         created with no visualisation.
3230
3231 2006-01-25  Wim Taymans  <wim@fluendo.com>
3232
3233         * gst-libs/gst/audio/gstbaseaudiosink.c:
3234         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
3235         Undo previous commit that returned WRONG_STATE sooner, it breaks 
3236         resume after pause.
3237
3238 2006-01-25  Wim Taymans  <wim@fluendo.com>
3239
3240         * gst-libs/gst/audio/gstbaseaudiosink.c:
3241         (gst_base_audio_sink_setcaps), (gst_base_audio_sink_event),
3242         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render):
3243         Improve debugging.
3244         Post error when caps cannot be parsed.
3245         Resync on discontinuity in the stream.
3246         Clip samples to segment boundaries.
3247         return WRONG_STATE sooner when we are flushing.
3248
3249         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_init),
3250         (gst_base_audio_src_get_time), (gst_base_audio_src_create):
3251         Make audiosrc operate in TIME.
3252         Set TIMESTAMP and DURATION on buffers.
3253
3254 2006-01-24  Tim-Philipp Müller  <tim at centricular dot net>
3255
3256         * tests/examples/seek/seek.c: (main):
3257           Output tag messages as well.
3258
3259 2006-01-23  Edward Hervey  <edward@fluendo.com>
3260
3261         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
3262         (free_pad_probes), (remove_fakesink), (pad_probe),
3263         (close_pad_link), (gst_decode_bin_change_state):
3264         Replace GstPadBlockCallback with pad probes that detect
3265         first buffer AND eos before removing fakesink.
3266         Fixes hang with demuxers doing EOS while pre-rolling.
3267         Solves #328279
3268
3269 2006-01-23  Andy Wingo  <wingo@pobox.com>
3270
3271         * ext/alsa/gstalsasink.c:
3272         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3273         (gst_base_rtp_depayload_setcaps),
3274         (gst_base_rtp_depayload_add_to_queue),
3275         (gst_base_rtp_depayload_queue_release): GCC 2.95 fixes (#328263).
3276         
3277         Patch by: Jens Granseuer <jensgr at gmx dot net>
3278
3279 2006-01-22  Julien MOUTTE  <julien@moutte.net>
3280
3281         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
3282         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
3283         (gst_xvimagesink_buffer_alloc): Playbin keeps some ref to some 
3284         frames. We might get a frame destroyed after changing state to
3285         NULL, adding a safety check on xcontext.
3286
3287 2006-01-22  Tim-Philipp Müller  <tim at centricular dot net>
3288
3289         * gst-libs/gst/interfaces/xoverlay.c:
3290           Fix prepare-xwindow-id code example in the docs - we need to
3291           ignore all messages that aren't element messages as well.
3292           
3293 2006-01-21  Julien MOUTTE  <julien@moutte.net>
3294
3295         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_buffer_alloc):
3296           I think one day i'll completely undestand how caps negotiation
3297           is supposed to work. This refactoring handles buffer_alloc
3298           called with caps we can't handle. We definitely don't want a
3299           set_caps with those caps, so we define and allocate a buffer
3300           we would like to receive.
3301
3302 2006-01-19  Tim-Philipp Müller  <tim at centricular dot net>
3303
3304         * gst/playback/gstplaybasebin.c: (setup_source):
3305           Free iterator when done.
3306
3307 2006-01-17  Jan Schmidt  <thaytan@mad.scientist.com>
3308
3309         * gst-libs/gst/audio/gstbaseaudiosink.c:
3310         (gst_base_audio_sink_render):
3311           Fix playback of non-synchronised streams by assuming a rate
3312           of 1.0 instead of a random one.
3313
3314           Makes this work again:
3315
3316           gst-launch filesrc location=raw_audio.file ! 'audio/x-raw-int,
3317           endianness=(int)4321, signed=(boolean)true, width=(int)16,
3318           depth=(int)16, rate=(int)44100, channels=(int)2' ! audioconvert !
3319           audioresample ! alsasink
3320
3321 === release 0.10.2 ===
3322
3323 2006-01-16  Thomas Vander Stichele <thomas at apestaart dot org>
3324
3325         * configure.ac:
3326           releasing 0.10.2, "Then the devil is six"
3327
3328 2006-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
3329
3330         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
3331         * gst/playback/gststreamselector.c:
3332         (gst_stream_selector_set_property):
3333           Comment out broken code that connects to the state-changed signal.
3334           At this point, changing current stream selection is broken, but 
3335           stuff like gst-launch playbin current-audio=1 works and filters
3336           to the chosen stream.
3337
3338 2006-01-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3339
3340         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
3341           Fix #327216 (null dereference in vorbisdec)
3342
3343 2006-01-16  Tim-Philipp Müller  <tim at centricular dot net>
3344
3345         * ext/theora/theoradec.c: (theora_handle_comment_packet):
3346           Post taglist actually on bus instead of just freeing it
3347           (fixes #327114 and totem bug #327080).
3348
3349         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
3350           Use gst_element_found_tags_for_pad(), so that the tags
3351           are sent downstream as an event as well.
3352
3353 2006-01-15  Thomas Vander Stichele  <thomas at apestaart dot org>
3354
3355         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
3356         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
3357         (gst_ximagesink_buffer_alloc):
3358         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
3359         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_show_frame),
3360         (gst_xvimagesink_buffer_alloc):
3361           move all regularly occurring messages to GST_LOG level
3362           add some more object logs
3363
3364 2006-01-14  Thomas Vander Stichele  <thomas at apestaart dot org>
3365
3366         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
3367           fix a silly segfault
3368
3369 2006-01-14  Tim-Philipp Müller  <tim at centricular dot net>
3370
3371         * docs/libs/gst-plugins-base-libs-docs.sgml:
3372         * docs/libs/gst-plugins-base-libs-sections.txt:
3373         * gst-libs/gst/audio/mixerutils.c:
3374         * gst-libs/gst/audio/mixerutils.h:
3375           Add docs for mixerutils stuff.
3376
3377 2006-01-13  Tim-Philipp Müller  <tim at centricular dot net>
3378
3379         * gst/playback/gstplaybasebin.c: (setup_source):
3380           Fix playback for sources that emit raw audio or
3381           raw video streams (e.g.: cd audio sources) (#325984).
3382
3383 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
3384
3385         * gst-libs/gst/audio/mixerutils.c:
3386         (gst_audio_mixer_filter_do_filter):
3387           actually save the element we create
3388
3389 2006-01-12  Tim-Philipp Müller  <tim at centricular dot net>
3390
3391         * gst-libs/gst/cdda/gstcddabasesrc.c:
3392         (gst_cdda_base_src_handle_track_seek):
3393           No need to post a tag message on the bus when seeking
3394           within the same track, only post it when the current
3395           track changes.
3396
3397 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
3398
3399         * gst/playback/gstplaybasebin.c: (group_destroy),
3400         (probe_triggered), (new_decoded_pad), (mute_group_type),
3401         (set_active_source):
3402         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
3403         * gst/playback/gststreamselector.c:
3404         (gst_stream_selector_base_init),
3405         (gst_stream_selector_set_property),
3406         (gst_stream_selector_request_new_pad):
3407           Reenable stream selection. These mechanisms need a complete overhaul
3408           in the face of 0.8->0.10 changes though.
3409
3410 2006-01-11  Jan Schmidt  <thaytan@mad.scientist.com>
3411
3412         * ext/ogg/gstoggdemux.c:
3413           Change the pad template to src_%d to match the pads that 
3414           are created from it. decodebin needs this information in order
3415           to decide that oggdemux is capable of producing multiple pads
3416           (and hence needs queues inserted).
3417
3418         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
3419         (gst_ogg_mux_collected):
3420           Make debug output more useful by using GST_PTR_FORMAT.
3421
3422 2006-01-11  Tommi Myöhänen  <ext-tommi dot myohanen at nokia dot com>
3423
3424         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
3425
3426         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_parse_caps):
3427           Set depth and width for alaw/mulaw (fixes #326601).
3428
3429 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3430
3431         * tests/icles/Makefile.am:
3432           don't build the tests if we don't have the libs
3433
3434 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
3435
3436         * ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
3437         (gst_cd_paranoia_paranoia_callback):
3438           Don't try to free NULL pointers.
3439
3440 2006-01-10  Edward Hervey  <edward@fluendo.com>
3441
3442         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_chain),
3443         (gst_audio_rate_change_state), (plugin_init):
3444         Add debugging category.
3445         Fix type issues.
3446         Add case for incoming buffers without valid offset/offset_end.
3447
3448 2006-01-10  Michael Smith  <msmith@fluendo.com>
3449
3450         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_dispose):
3451           Don't leak GCond in audio sources.
3452
3453 2006-01-10  Jan Schmidt  <thaytan@mad.scientist.com>
3454
3455         * gst/playback/gstplaybin.c: (gen_audio_element):
3456           Don't leak an autoaudiosink/alsasink when we generate
3457           a new audio element. (old code, I guess)
3458
3459 2006-01-10  Michael Smith  <msmith@fluendo.com>
3460
3461         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_setcaps):
3462           Support float audio in audiorate.
3463           Use width rather than depth for selecting sample width.
3464
3465 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
3466
3467         * gst/videotestsrc/videotestsrc.h:
3468           Use GLib types here (that way we don't have to include the
3469           generated _stdint.h header, which makes life easier for win32
3470           folks that don't use autotools for the build) (#325990, patch
3471           by: Sergey Scobich).
3472
3473 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
3474
3475         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
3476         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
3477         (gst_ring_buffer_pause), (wait_segment):
3478         * gst-libs/gst/audio/gstringbuffer.h:
3479           Name (private) union, makes Forte compiler happy (this time
3480           for real) (#324900).
3481
3482 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
3483
3484         * gst-libs/gst/audio/Makefile.am:
3485           Link against libgstinterfaces, needed for mixer
3486           and property probe stuff.
3487
3488 2006-01-09  Edward Hervey  <edward@fluendo.com>
3489
3490         * gst-libs/gst/Makefile.am:
3491
3492 2006-01-09  Tim-Philipp Müller  <tim at centricular dot net>
3493
3494         * gst-libs/gst/audio/Makefile.am:
3495         * gst-libs/gst/audio/mixerutils.c:
3496         (gst_audio_mixer_filter_do_filter),
3497         (gst_audio_mixer_filter_check_element),
3498         (gst_audio_mixer_filter_probe_feature),
3499         (element_factory_rank_compare_func),
3500         (gst_audio_default_registry_mixer_filter):
3501         * gst-libs/gst/audio/mixerutils.h:
3502           Add gst_audio_default_registry_mixer_filter() utility
3503           function.
3504
3505 2006-01-03  Michael Smith  <msmith@fluendo.com>
3506
3507         * gst/audioresample/resample.h:
3508           As before, but for o_buf
3509
3510 2006-01-03  Michael Smith  <msmith@fluendo.com>
3511
3512         * gst/audioresample/resample.h:
3513           Declare struct _ResampleState.buffer as unsigned char *, not void *,
3514           since we do arithmetic on it.
3515
3516 2006-01-02  Tim-Philipp Müller  <tim at centricular dot net>
3517
3518         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
3519         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
3520         (gst_ring_buffer_pause), (wait_segment):
3521         * gst-libs/gst/audio/gstringbuffer.h:
3522           Sun's Forte compiler doesn't seem to like anonymous structs,
3523           so use same setup as in GstBaseSrc (fixes #324900).
3524
3525 2005-12-30  Stefan Kost  <ensonic@users.sf.net>
3526
3527         * configure.ac:
3528         * gst/volume/Makefile.am:
3529         * gst/volume/demo.c:
3530           move old example to tests/examples/volume/volune.c
3531         * tests/examples/Makefile.am:
3532         * tests/examples/seek/seek.c: (main):
3533           change window-close event from "delete-event" to "destroy"
3534         * tests/examples/volume/Makefile.am:
3535         * tests/examples/volume/volume.c: (value_changed_callback),
3536         (setup_gui), (message_received), (eos_message_received), (main):
3537           fix event handling and bus usage
3538
3539 2005-12-29  Stefan Kost  <ensonic@users.sf.net>
3540
3541         * gst/audiotestsrc/gstaudiotestsrc.c:
3542         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_class_init),
3543         (gst_audio_test_src_init), (gst_audio_test_src_src_fixate),
3544         (gst_audio_test_src_query), (gst_audio_test_src_create_sine),
3545         (gst_audio_test_src_create_square),
3546         (gst_audio_test_src_create_saw),
3547         (gst_audio_test_src_create_triangle),
3548         (gst_audio_test_src_create_silence),
3549         (gst_audio_test_src_create_white_noise),
3550         (gst_audio_test_src_create_pink_noise),
3551         (gst_audio_test_src_init_sine_table),
3552         (gst_audio_test_src_create_sine_table),
3553         (gst_audio_test_src_change_wave),
3554         (gst_audio_test_src_change_volume), (gst_audio_test_src_do_seek),
3555         (gst_audio_test_src_create), (gst_audio_test_src_set_property):
3556         * gst/audiotestsrc/gstaudiotestsrc.h:
3557           update to basesrc changes, implement segmented seeking and eos
3558           handling, add a 'sine-tab' waveform for performance critical playback
3559
3560 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
3561
3562         * po/POTFILES.in:
3563           ... and this time the other modified file that I missed last time.
3564
3565 2005-12-29  Michael Smith  <msmith@fluendo.com>
3566
3567         * gst/playback/gstdecodebin.c: (new_pad):
3568           Fix non-C89 variable declaration not at the start of a block. Should
3569           help some compilers.
3570
3571 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
3572
3573         * tests/check/Makefile.am:
3574           And now fix 'make distcheck' (builddir != srcdir)
3575
3576 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
3577
3578         * configure.ac:
3579         * ext/cdparanoia/Makefile.am:
3580         * ext/cdparanoia/gstcdparanoia.c:
3581         * ext/cdparanoia/gstcdparanoia.h:
3582         * ext/cdparanoia/gstcdparanoiasrc.c:
3583         (gst_cd_paranoia_mode_get_type), (gst_cd_paranoia_src_base_init),
3584         (gst_cd_paranoia_src_init), (gst_cd_paranoia_src_class_init),
3585         (gst_cd_paranoia_src_open), (gst_cd_paranoia_src_close),
3586         (gst_cd_paranoia_paranoia_callback),
3587         (gst_cd_paranoia_src_read_sector), (gst_cd_paranoia_src_finalize),
3588         (gst_cd_paranoia_src_set_property),
3589         (gst_cd_paranoia_src_get_property), (plugin_init):
3590         * ext/cdparanoia/gstcdparanoiasrc.h:
3591           New cdparanoiasrc element based on cddabasesrc; enable cdparanoia
3592           plugin again (there are still fixes required to playbin to make
3593           cdda:// uris work there).
3594
3595 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
3596
3597         * tests/check/Makefile.am:
3598           Fix test case compilation.
3599
3600 2005-12-29  Tim-Philipp Müller  <tim at centricular dot net>
3601
3602         * gst-libs/gst/cdda/gstcddabasesrc.c:
3603         (gst_cdda_base_src_update_duration),
3604         (gst_cdda_base_src_calculate_cddb_id):
3605           An integer is not a string. Fix access to uninitialised variable.
3606
3607         * tests/check/Makefile.am:
3608           Add cddabasesrc unit test; also actually enable the vorbis test.
3609
3610         * tests/check/generic/states.c:
3611           Blacklist new cd audio elements as well.
3612
3613         * tests/check/libs/cddabasesrc.c:
3614           Unit test for GstCddaBaseSrc (discid calculation mostly).
3615
3616 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
3617
3618         * docs/libs/Makefile.am:
3619         * docs/libs/gst-plugins-base-libs-docs.sgml:
3620         * docs/libs/gst-plugins-base-libs-sections.txt:
3621         * docs/libs/gst-plugins-base-libs.types:
3622           Add docs for libgstcdda/GstCddaBaseSrc.
3623
3624         * gst-libs/gst/interfaces/mixertrack.h:
3625           Do one struct member per line with a semicolon at the end, that way
3626           even gtk-doc might parse it without complaining.
3627
3628 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
3629
3630         * configure.ac:
3631         * gst-libs/gst/Makefile.am:
3632         * gst-libs/gst/cdda/Makefile.am:
3633         * gst-libs/gst/cdda/base64.c:
3634         * gst-libs/gst/cdda/base64.h:
3635         * gst-libs/gst/cdda/gstcddabasesrc.c:
3636         (gst_cdda_base_src_mode_get_type), (gst_cdda_base_src_base_init),
3637         (gst_cdda_base_src_class_init), (gst_cdda_base_src_init),
3638         (gst_cdda_base_src_finalize), (gst_cdda_base_src_set_property),
3639         (gst_cdda_base_src_get_property),
3640         (gst_cdda_base_src_get_track_from_sector),
3641         (gst_cdda_base_src_get_query_types), (gst_cdda_base_src_convert),
3642         (gst_cdda_base_src_query), (gst_cdda_base_src_is_seekable),
3643         (gst_cdda_base_src_do_seek), (gst_cdda_base_src_handle_track_seek),
3644         (gst_cdda_base_src_handle_event), (gst_cdda_base_src_uri_get_type),
3645         (gst_cdda_base_src_uri_get_protocols),
3646         (gst_cdda_base_src_uri_get_uri), (gst_cdda_base_src_uri_set_uri),
3647         (gst_cdda_base_src_uri_handler_init),
3648         (gst_cdda_base_src_setup_interfaces),
3649         (gst_cdda_base_src_add_track), (gst_cdda_base_src_update_duration),
3650         (cddb_sum), (gst_cddabasesrc_calculate_musicbrainz_discid),
3651         (lba_to_msf), (gst_cdda_base_src_calculate_cddb_id),
3652         (gst_cdda_base_src_add_tags),
3653         (gst_cdda_base_src_add_index_associations),
3654         (gst_cdda_base_src_set_index), (gst_cdda_base_src_get_index),
3655         (gst_cdda_base_src_track_sort_func), (gst_cdda_base_src_start),
3656         (gst_cdda_base_src_clear_tracks), (gst_cdda_base_src_stop),
3657         (gst_cdda_base_src_create):
3658         * gst-libs/gst/cdda/gstcddabasesrc.h:
3659         * gst-libs/gst/cdda/sha1.c:
3660         * gst-libs/gst/cdda/sha1.h:
3661           Add new libgstcdda with GstCddaBaseSrc class.
3662
3663 2005-12-28  Tim-Philipp Müller  <tim at centricular dot net>
3664
3665         * ext/gnomevfs/gstgnomevfssink.h:
3666           Use GstBaseSinkClass as parent_class member for class struct, not
3667           GstBaseSink.
3668
3669 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
3670
3671         Patch by: Michael Benes
3672
3673         * gst/videotestsrc/gstvideotestsrc.c:
3674         (gst_video_test_src_class_init), (gst_video_test_src_start):
3675           Add start method to reset running time and number of frames sent
3676           when starting up (fixes #324696)
3677
3678 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
3679
3680         * docs/plugins/Makefile.am:
3681         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
3682         * docs/plugins/gst-plugins-base-plugins-sections.txt:
3683         * docs/plugins/gst-plugins-base-plugins.args:
3684         * docs/plugins/gst-plugins-base-plugins.hierarchy:
3685         * docs/plugins/gst-plugins-base-plugins.signals:
3686           Add docs stuff for gnomevfssrc and gnomevfssink.
3687
3688         * ext/gnomevfs/gstgnomevfssrc.c:
3689           Fix example pipeline in gtk-doc blurb.
3690
3691 2005-12-27  Tim-Philipp Müller  <tim at centricular dot net>
3692
3693         * ext/gnomevfs/Makefile.am:
3694         * ext/gnomevfs/gstgnomevfs.c: (gst_gnome_vfs_uri_get_type),
3695         (gst_gnome_vfs_handle_copy), (gst_gnome_vfs_handle_free),
3696         (gst_gnome_vfs_handle_get_type), (plugin_init):
3697         * ext/gnomevfs/gstgnomevfs.h:
3698         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnome_vfs_sink_do_init),
3699         (gst_gnome_vfs_sink_base_init), (gst_gnome_vfs_sink_class_init),
3700         (gst_gnome_vfs_sink_finalize), (gst_gnome_vfs_sink_init),
3701         (gst_gnome_vfs_sink_set_property),
3702         (gst_gnome_vfs_sink_get_property), (gst_gnome_vfs_sink_open_file),
3703         (gst_gnome_vfs_sink_close_file), (gst_gnome_vfs_sink_start),
3704         (gst_gnome_vfs_sink_stop), (gst_gnome_vfs_sink_handle_event),
3705         (gst_gnome_vfs_sink_query), (gst_gnome_vfs_sink_render),
3706         (gst_gnome_vfs_sink_uri_get_type),
3707         (gst_gnome_vfs_sink_uri_get_protocols),
3708         (gst_gnome_vfs_sink_uri_get_uri), (gst_gnome_vfs_sink_uri_set_uri),
3709         (gst_gnome_vfs_sink_uri_handler_init):
3710         * ext/gnomevfs/gstgnomevfssink.h:
3711           Port gnomevfssink; add gtk-doc blurb.
3712
3713         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnome_vfs_src_get_type),
3714         (gst_gnome_vfs_src_base_init), (gst_gnome_vfs_src_class_init),
3715         (gst_gnome_vfs_src_init), (gst_gnome_vfs_src_finalize),
3716         (gst_gnome_vfs_src_uri_get_type),
3717         (gst_gnome_vfs_src_uri_get_protocols),
3718         (gst_gnome_vfs_src_uri_get_uri), (gst_gnome_vfs_src_uri_set_uri),
3719         (gst_gnome_vfs_src_uri_handler_init),
3720         (gst_gnome_vfs_src_set_property), (gst_gnome_vfs_src_get_property),
3721         (gst_gnome_vfs_src_unicodify), (audiocast_thread_run),
3722         (gst_gnome_vfs_src_send_additional_headers_callback),
3723         (gst_gnome_vfs_src_received_headers_callback),
3724         (gst_gnome_vfs_src_push_callbacks),
3725         (gst_gnome_vfs_src_pop_callbacks),
3726         (gst_gnome_vfs_src_get_icy_metadata), (gst_gnome_vfs_src_create),
3727         (gst_gnome_vfs_src_is_seekable), (gst_gnome_vfs_src_get_size),
3728         (gst_gnome_vfs_src_start), (gst_gnome_vfs_src_stop):
3729         * ext/gnomevfs/gstgnomevfssrc.h:
3730           s/gst_gnomevfssrc/gst_gnome_vfs_src/; move header stuff to header
3731           file; add gtk-doc blurb with example pipelines.
3732
3733 === release 0.10.1 ===
3734
3735 2005-12-23  Thomas Vander Stichele <thomas at apestaart dot org>
3736
3737         * configure.ac:
3738           releasing 0.10.1, "Dobro Dedek"
3739
3740 2005-12-21  Edgard Lima <edgard.lima@indt.org.br>
3741
3742         * gst/typefind/gsttypefindfunctions.c:
3743         iLBC30 and iLBC20 added to typefind.
3744
3745 2005-12-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3746
3747         * gst-libs/gst/audio/gstbaseaudiosink.c:
3748         (gst_base_audio_sink_class_init):
3749         * gst-libs/gst/audio/gstbaseaudiosrc.c:
3750         (gst_base_audio_src_class_init):
3751           update strings, values are in microseconds
3752           change the default sink buffer time to something that is smaller
3753           (to help software volume mixing have a slightly lower delay) but
3754           still be acceptable on Wim's laptop
3755
3756 2005-12-20  Edward Hervey  <edward@fluendo.com>
3757
3758         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_template_caps):
3759         Made a quack, forgot to add DUCK to the riff video template.
3760
3761 2005-12-19  Edward Hervey  <edward@fluendo.com>
3762
3763         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_base_init),
3764         (gst_ogm_parse_init), (gst_ogm_audio_parse_init),
3765         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
3766         (gst_ogm_parse_chain):
3767         Make sure pads are initialized correctly.
3768         * gst-libs/gst/riff/riff-ids.h:
3769         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
3770         (gst_riff_create_video_template_caps):
3771         Add a whole bunch of FOURCC <=> MimeType.
3772         Extend the riff video pad template to support the newly added fourcc.
3773
3774 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
3775
3776         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain),
3777         (gst_ogg_demux_activate_chain):
3778           Extra debug output when activating/deactivating chains.
3779
3780         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
3781         (is_demuxer_element), (try_to_link_1), (remove_element_chain),
3782         (unlinked):
3783           Remove a queue from our list when it becomes unlinked.
3784           Don't add queues to elements in class 'Demux' if they
3785           can only produce one pad 
3786
3787 2005-12-18  Julien MOUTTE  <julien@moutte.net>
3788
3789         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_base_init),
3790         (gst_video_sink_get_type): Add a debug category.
3791
3792 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
3793
3794         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3795         (gst_base_rtp_depayload_init), (gst_base_rtp_depayload_handle_sink_event):
3796           Handle downstream newsegment by sending our own newsegment before the
3797           next buffer to be released. (#323900)
3798
3799 2005-12-17  Philippe Khalaf  <burger@speedy.org> 
3800
3801         * gst-libs/gst/rtp/gstbasertpdepayload.c:
3802         (gst_base_rtp_depayload_set_gst_timestamp):
3803           add queue delay to new segment as well (as opposed to just the first
3804           buffer). (bug #322347)
3805
3806 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
3807
3808         * ext/libvisual/visual.c: (make_valid_name):
3809           change some char* into char[]
3810         * gst/audiotestsrc/gstaudiotestsrc.c:
3811         (gst_audio_test_src_class_init), (gst_audio_test_src_do_seek),
3812         (gst_audio_test_src_create):
3813         * gst/audiotestsrc/gstaudiotestsrc.h:
3814           prepare to handle EOS and SEGMENT_DONE
3815
3816 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
3817
3818         * tests/check/generic/states.c: (GST_START_TEST):
3819           Blacklist cdparanoia element in state test.
3820
3821 2005-12-16  Tim-Philipp Müller  <tim at centricular dot net>
3822
3823           Patch by: Benjamin Pineau
3824
3825         * gst/tcp/gsttcp.c:
3826         * gst/tcp/gsttcpclientsink.c:
3827         * gst/tcp/gsttcpserversink.c:
3828         * gst/tcp/gsttcpserversrc.c:
3829           Add <string.h> includes for memset and FD_ZERO (fixes #323878)
3830
3831 2005-12-15  Michael Smith  <msmith@fluendo.com>
3832
3833         * gst/videorate/gstvideorate.c: (gst_video_rate_blank_data),
3834         (gst_video_rate_chain):
3835           Fix timestamping for videorate when the first buffer it sees has a
3836           non-zero timestamp. Fix some misleading debug output.
3837
3838 2005-12-15  Michael Smith  <msmith@fluendo.com>
3839
3840         * gst/audioresample/gstaudioresample.c:
3841           Don't leak all input buffers to audioresample.
3842
3843 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
3844
3845         * ext/pango/gsttextoverlay.c: (gst_text_overlay_collected):
3846           Don't operate on empty text buffers. Strip newlines and
3847           tabs only from the end of the text, but leave them intact
3848           in the middle. Fix typo in gtk-doc description.
3849
3850 2005-12-15  Tim-Philipp Müller  <tim at centricular dot net>
3851
3852         * gst/playback/gstplaybasebin.c:
3853         * gst/playback/gstplaybin.c: (handoff):
3854           Make sure the video frame buffer we return to apps via the
3855           "frame" property always has caps set on it. Modify
3856           _gst_gvalue_set_object() macro to handle NULL objects
3857           gracefully too.
3858
3859 2005-12-14  Stefan Kost  <ensonic@users.sf.net>
3860
3861         * gst/audiotestsrc/gstaudiotestsrc.c:
3862         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
3863         (gst_audio_test_src_setcaps), (gst_audio_test_src_src_query),
3864         (gst_audio_test_src_do_seek), (gst_audio_test_src_is_seekable),
3865         (gst_audio_test_src_create):
3866         * gst/audiotestsrc/gstaudiotestsrc.h:
3867         Adjust to some recent api changes and add wtays new cool seeking
3868         capabillities
3869
3870 2005-12-14  Tim-Philipp Müller  <tim at centricular dot net>
3871
3872         * ext/alsa/Makefile.am:
3873         * ext/alsa/gstalsadeviceprobe.c:
3874         * ext/alsa/gstalsadeviceprobe.h:
3875           Helper functions to add device probing via the GstPropertyProbe
3876           interface to a class.
3877
3878         * ext/alsa/gstalsamixer.h:
3879           Comment out GST_ALSA_MIXER, it returns a struct that's not
3880           used.
3881
3882         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
3883           Add some debug info. 
3884
3885         * ext/alsa/gstalsamixerelement.c:
3886         (gst_alsa_mixer_element_interface_supported),
3887         (gst_implements_interface_init),
3888         (gst_alsa_mixer_element_init_interfaces),
3889         (gst_alsa_mixer_element_class_init),
3890         (gst_alsa_mixer_element_finalize), (gst_alsa_mixer_element_init),
3891         (gst_alsa_mixer_element_set_property),
3892         (gst_alsa_mixer_element_get_property),
3893         (gst_alsa_mixer_element_change_state):
3894         * ext/alsa/gstalsamixerelement.h:
3895           Add 'device' and 'device-name' properties. Add GstPropertyProbe
3896           for device handling (gnome-volume-control will need that).
3897
3898 2005-12-12  Christian Schaller  <uraeus@gnome.org>
3899
3900         * ext/Makefile.am: fix cdparanoia entry
3901         * gst-plugins-base.spec.in: add cdparanoia
3902
3903 2005-12-12  Michael Smith  <msmith@fluendo.com>
3904
3905         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
3906           Use the correct function to free list of typefind factories.
3907
3908 2005-12-12  Wim Taymans  <wim@fluendo.com>
3909
3910         * gst/videotestsrc/gstvideotestsrc.c:
3911         (gst_video_test_src_class_init), (gst_video_test_src_init),
3912         (gst_video_test_src_parse_caps), (gst_video_test_src_query),
3913         (gst_video_test_src_do_seek), (gst_video_test_src_is_seekable),
3914         (gst_video_test_src_create):
3915         * gst/videotestsrc/gstvideotestsrc.h:
3916         Implement seeking in videotestsrc.
3917         Small cleanups.
3918
3919 2005-12-12  Wim Taymans  <wim@fluendo.com>
3920
3921         * ext/cdparanoia/Makefile.am:
3922         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
3923         (gst_paranoia_endian_get_type), (_do_init),
3924         (cdparanoia_class_init), (cdparanoia_init),
3925         (cdparanoia_set_property), (cdparanoia_get_property),
3926         (cdparanoia_do_seek), (cdparanoia_is_seekable),
3927         (cdparanoia_create), (cdparanoia_start), (cdparanoia_stop),
3928         (cdparanoia_convert), (cdparanoia_get_query_types),
3929         (cdparanoia_query), (cdparanoia_set_index),
3930         (cdparanoia_uri_set_uri):
3931         * ext/cdparanoia/gstcdparanoia.h:
3932         Partially ported cdparanoia now that basesrc can support a
3933         plugin like this..
3934
3935 2005-12-12  Wim Taymans  <wim@fluendo.com>
3936
3937         * tests/examples/seek/scrubby.c: (main):
3938         Set higher priority for bus events so they don't get reordered with
3939         gtk gui events.
3940
3941         * tests/examples/seek/seek.c: (do_seek), (start_seek), (stop_seek),
3942         (flush_toggle_cb), (main):
3943         Added checkbox to disable flushing seeks. 
3944         Disable scrubbing when doing non flushing seeks.
3945
3946 2005-12-12  Tim-Philipp Müller  <tim at centricular dot net>
3947
3948         * gst/subparse/gstsubparse.c: (gst_sub_parse_init),
3949         (gst_sub_parse_do_seek), (gst_sub_parse_src_event), (parse_subrip),
3950         (parser_state_init), (handle_buffer), (gst_sub_parse_chain),
3951         (gst_sub_parse_sink_event), (gst_sub_parse_change_state):
3952           Implement some sort of event handling that doesn't rely on
3953           g_return_if_fail; make sure we always push the last chunk of an 
3954           .srt out when we receive an EOS; use gst_pad_alloc_buffer; fix
3955           state change function; remove some old cruft. Seeking is still
3956           rather unlikely to work though.
3957
3958         * tools/.cvsignore:
3959           Ignore more.
3960
3961 2005-12-11  Julien MOUTTE  <julien@moutte.net>
3962
3963         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): 
3964         Fixed a leak of the current image reference when cleaning up.
3965         Thanks to Arwed von Merkatz (alley_cat) for pointing it out.
3966
3967 2005-12-09  Michael Smith  <msmith@fluendo.com>
3968
3969         * tools/Makefile.am:
3970         * tools/gst-launch-ext-m.m:
3971           Remove gst-launch-ext. It doesn't work, and is no longer
3972           particularly useful.
3973
3974 2005-12-08  Luca Ognibene  <luogni@tin.it>
3975
3976         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
3977           don't pass random values to ogmparse convert function.
3978           Make seeking possible in the exile1.ogm file.
3979
3980 2005-12-07  Tim-Philipp Müller  <tim at centricular dot net>
3981
3982         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_property):
3983         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
3984           Work around refcount problem with g_value_set_object() that occur
3985           if the core has been compiled against GLib-2.6 (g_value_set_object()
3986           will only g_object_ref() the element, but the caller will
3987           gst_object_unref() it and bad things will happen due to the way
3988           GstObjects are refcounted in the GLib-2.6 case). Fixes problems with
3989           totem for people on FC4 using Thomas's 0.10 RPMs.
3990           
3991 2005-12-07  Edward Hervey  <edward@fluendo.com>
3992
3993         Time to welcome ogm to 0.10 :)
3994         
3995         * ext/ogg/gstoggdemux.c: (internal_element_pad_added_cb),
3996         (gst_ogg_pad_typefind):
3997         Oggdemux can now properly typefind elements with dynamic pads.
3998         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
3999         Properly set caps on src pad, and set caps on outgoing buffers.
4000
4001 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
4002
4003         * ext/alsa/gstalsamixer.h:
4004         * ext/alsa/gstalsamixerelement.h:
4005         * ext/alsa/gstalsamixeroptions.h:
4006         * ext/alsa/gstalsamixertrack.h:
4007         * ext/alsa/gstalsasink.c:
4008         * ext/alsa/gstalsasink.h:
4009         * ext/alsa/gstalsasrc.c:
4010         * ext/alsa/gstalsasrc.h:
4011         * ext/cdparanoia/gstcdparanoia.h:
4012         * ext/gnomevfs/gstgnomevfsuri.h:
4013         * ext/ogg/gstoggdemux.c:
4014         * ext/ogg/gstoggmux.c:
4015         * ext/pango/gsttextoverlay.h:
4016         * ext/theora/theoradec.c:
4017         * ext/theora/theoraenc.c:
4018         * ext/vorbis/vorbisdec.h:
4019         * ext/vorbis/vorbisenc.c:
4020         * ext/vorbis/vorbisenc.h:
4021         * ext/vorbis/vorbisparse.h:
4022         * gst-libs/gst/audio/gstaudioclock.h:
4023         * gst-libs/gst/audio/gstaudiosink.c:
4024         * gst-libs/gst/audio/gstaudiosink.h:
4025         * gst-libs/gst/audio/gstaudiosrc.c:
4026         * gst-libs/gst/audio/gstaudiosrc.h:
4027         * gst-libs/gst/audio/gstbaseaudiosink.c:
4028         * gst-libs/gst/audio/gstbaseaudiosink.h:
4029         * gst-libs/gst/audio/gstbaseaudiosrc.c:
4030         * gst-libs/gst/audio/gstbaseaudiosrc.h:
4031         * gst-libs/gst/audio/gstringbuffer.h:
4032         * gst-libs/gst/audio/multichannel.h:
4033         * gst-libs/gst/floatcast/floatcast.h:
4034         * gst-libs/gst/interfaces/colorbalance.c:
4035         * gst-libs/gst/interfaces/colorbalance.h:
4036         * gst-libs/gst/interfaces/colorbalancechannel.h:
4037         * gst-libs/gst/interfaces/mixer.h:
4038         * gst-libs/gst/interfaces/mixeroptions.h:
4039         * gst-libs/gst/interfaces/mixertrack.h:
4040         * gst-libs/gst/interfaces/navigation.h:
4041         * gst-libs/gst/interfaces/propertyprobe.h:
4042         * gst-libs/gst/interfaces/tuner.h:
4043         * gst-libs/gst/interfaces/tunerchannel.h:
4044         * gst-libs/gst/interfaces/tunernorm.h:
4045         * gst-libs/gst/interfaces/xoverlay.h:
4046         * gst-libs/gst/netbuffer/gstnetbuffer.h:
4047         * gst-libs/gst/riff/riff-ids.h:
4048         * gst-libs/gst/riff/riff-media.h:
4049         * gst-libs/gst/riff/riff-read.h:
4050         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4051         * gst-libs/gst/rtp/gstbasertppayload.c:
4052         * gst-libs/gst/rtp/gstbasertppayload.h:
4053         * gst-libs/gst/rtp/gstrtpbuffer.c:
4054         * gst-libs/gst/rtp/gstrtpbuffer.h:
4055         * gst-libs/gst/tag/gsttageditingprivate.h:
4056         * gst-libs/gst/tag/gstvorbistag.c:
4057         (gst_tag_list_from_vorbiscomment_buffer):
4058         * gst-libs/gst/tag/tag.h:
4059         * gst-libs/gst/video/video.h:
4060         * gst/adder/gstadder.c:
4061         * gst/adder/gstadder.h:
4062         * gst/audioconvert/audioconvert.c:
4063         * gst/audioconvert/audioconvert.h:
4064         * gst/audioconvert/gstaudioconvert.c:
4065         * gst/audioconvert/gstchannelmix.c:
4066         * gst/audioconvert/gstchannelmix.h:
4067         * gst/audiorate/gstaudiorate.c:
4068         * gst/audioresample/buffer.h:
4069         * gst/audioresample/functable.h:
4070         * gst/audioresample/gstaudioresample.c:
4071         * gst/audioresample/resample.h:
4072         * gst/ffmpegcolorspace/avcodec.h:
4073         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
4074         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
4075         * gst/ffmpegcolorspace/imgconvert.c:
4076         * gst/ffmpegcolorspace/imgconvert_template.h:
4077         * gst/playback/gstdecodebin.c:
4078         * gst/playback/gstplaybasebin.h:
4079         * gst/playback/gstplaybin.c:
4080         * gst/playback/gststreaminfo.h:
4081         * gst/tcp/gstfdset.c:
4082         * gst/tcp/gstfdset.h:
4083         * gst/tcp/gstmultifdsink.c:
4084         * gst/tcp/gstmultifdsink.h:
4085         * gst/tcp/gsttcp.h:
4086         * gst/tcp/gsttcpclientsrc.c:
4087         * gst/tcp/gsttcpclientsrc.h:
4088         * gst/tcp/gsttcpplugin.h:
4089         * gst/tcp/gsttcpserversink.c:
4090         * gst/tcp/gsttcpserversrc.c:
4091         * gst/typefind/gsttypefindfunctions.c:
4092         * gst/videorate/gstvideorate.c:
4093         * gst/videotestsrc/gstvideotestsrc.h:
4094         * gst/videotestsrc/videotestsrc.h:
4095         * sys/v4l/gstv4lcolorbalance.h:
4096         * sys/v4l/gstv4ltuner.h:
4097         * sys/v4l/gstv4lxoverlay.h:
4098         * sys/v4l/v4l_calls.h:
4099         * sys/v4l/videodev_mjpeg.h:
4100         * tests/check/elements/audioconvert.c:
4101         * tests/check/elements/audioresample.c:
4102         * tests/check/elements/audiotestsrc.c:
4103         * tests/check/elements/videotestsrc.c:
4104         * tests/check/elements/volume.c:
4105         * tests/examples/seek/scrubby.c:
4106         * tests/examples/seek/seek.c:
4107           expand tabs
4108
4109 === release 0.10.0 ===
4110
4111 2005-12-05   <thomas (at) apestaart (dot) org>
4112
4113         * configure.ac:
4114           releasing 0.10.0, "Mont-d'or"
4115
4116 2005-12-05  Jan Schmidt  <thaytan@mad.scientist.com>
4117
4118         * tests/examples/seek/Makefile.am:
4119         Build fix for when gtk is not available.
4120
4121 2005-12-05  Andy Wingo  <wingo@pobox.com>
4122
4123         * ext/libvisual/visual.c: (get_buffer):
4124         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
4125         * ext/pango/gsttextrender.c: (gst_text_render_chain):
4126         * ext/theora/theoradec.c: (theora_handle_data_packet):
4127         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
4128         (theora_enc_chain):
4129         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4130         * gst/videotestsrc/gstvideotestsrc.c: (gst_video_test_src_create):
4131         Update for alloc_buffer changes.
4132
4133 2005-12-05  Andy Wingo  <wingo@pobox.com>
4134
4135         patch by: Kai Vehmanen <kv2004 eca cx>
4136         
4137         * gst-libs/gst/rtp/gstbasertpdepayload.c
4138         (gst_base_rtp_depayload_thread): Fix busy loop (#323017).
4139
4140 2005-12-04  Andy Wingo  <wingo@pobox.com>
4141
4142         patch by: Sebastien Cote <sebas642 yahoo ca>
4143         
4144         * pkgconfig/gstreamer-plugins-base.pc.in (Libs): Add -L flag.
4145         Fixes #319172.
4146
4147 2005-12-02  Tim-Philipp Müller  <tim at centricular dot net>
4148
4149         * docs/plugins/Makefile.am:
4150         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4151         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4152         * docs/plugins/gst-plugins-base-plugins.hierarchy:
4153         * ext/pango/gstclockoverlay.c:
4154         * ext/pango/gsttextoverlay.c: 
4155         * ext/pango/gsttextrender.c:
4156         * ext/pango/gsttimeoverlay.c:
4157           Add gtk-doc blurbs to pango elements.
4158
4159 2005-12-02  Wim Taymans  <wim@fluendo.com>
4160
4161         * gst/audioresample/buffer.c: (audioresample_buffer_queue_flush):
4162         * gst/audioresample/buffer.h:
4163         * gst/audioresample/gstaudioresample.c:
4164         * gst/audioresample/gstaudioresample.h:
4165         * gst/audioresample/resample.c: (resample_input_flush),
4166         (resample_input_pushthrough), (resample_input_eos),
4167         (resample_get_output_size_for_input),
4168         (resample_get_input_size_for_output), (resample_get_output_size),
4169         (resample_get_output_data):
4170         * gst/audioresample/resample.h:
4171         * gst/audioresample/resample_ref.c: (resample_scale_ref):
4172         Fix audioresample, seek torture, new segments, reverse negotiation
4173         etc.. work fine.
4174
4175 2005-12-02  Wim Taymans  <wim@fluendo.com>
4176
4177         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
4178         Small cleanups.
4179
4180 2005-12-02  Wim Taymans  <wim@fluendo.com>
4181
4182         * gst/audioconvert/gstaudioconvert.c:
4183         (gst_audio_convert_transform):
4184         Post errors.
4185
4186 === release 0.9.7 ===
4187
4188 2005-12-01   <thomas (at) apestaart (dot) org>
4189
4190         * configure.ac:
4191           releasing 0.9.7, "Mi Perro No Tiene Ninguna Nariz"
4192
4193 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4194
4195         * Makefile.am:
4196         * po/hu.po:
4197         * win32/MANIFEST:
4198         * win32/gst.sln:
4199           add win32 MANIFEST file
4200           do something to the hungarian translation
4201
4202 2005-12-01  Tim-Philipp Müller  <tim at centricular dot net>
4203
4204         * ext/Makefile.am:
4205           Add $(PANGO_DIR) to SUBDIRS
4206
4207         * ext/pango/gstclockoverlay.c:
4208         * ext/pango/gsttimeoverlay.c:
4209           Fix and improve element descriptions.
4210
4211 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
4212
4213         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4214         * docs/plugins/inspect/plugin-libvisual.xml:
4215         * docs/plugins/inspect/plugin-pango.xml:
4216           add pango plugin to docs
4217
4218 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
4219
4220         * configure.ac:
4221         * ext/Makefile.am:
4222           moved pango to base
4223
4224 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4225
4226         * configure.ac:
4227         * tests/Makefile.am:
4228         * tests/icles/.cvsignore:
4229         * tests/icles/Makefile.am:
4230         * tests/icles/stress-xoverlay.c: (myclock), (open_display),
4231         (close_display), (resize_window), (move_window), (create_window),
4232         (terminate_playback), (pause_playback), (start_playback), (main):
4233           add stress test for xoverlay from Julien
4234
4235 2005-12-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
4236
4237         * docs/libs/tmpl/gstcolorbalance.sgml:
4238         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4239         * gst-libs/gst/rtp/gstbasertppayload.c:
4240         * gst-libs/gst/rtp/gstrtpbuffer.c:
4241         * gst-libs/gst/rtp/gstrtpbuffer.h:
4242           Do burger's rename for rtp payloaders and depayloaders
4243
4244 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4245
4246         * win32/:
4247           add Visual Studio 6 build files
4248
4249 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4250
4251         * docs/libs/gst-plugins-base-libs-docs.sgml:
4252         * docs/libs/gst-plugins-base-libs-sections.txt:
4253         * docs/libs/tmpl/gstaudio.sgml:
4254         * docs/libs/tmpl/gstringbuffer.sgml:
4255         * gst-libs/gst/interfaces/xoverlay.c:
4256         * gst-libs/gst/video/gstvideofilter.c:
4257         * gst-libs/gst/video/gstvideosink.c:
4258           update documentation
4259
4260 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4261
4262         * gst/tcp/gstmultifdsink.c: (gst_multi_fd_sink_base_init),
4263         (gst_multi_fd_sink_class_init), (gst_multi_fd_sink_init),
4264         (gst_multi_fd_sink_finalize), (gst_multi_fd_sink_add),
4265         (gst_multi_fd_sink_remove), (gst_multi_fd_sink_clear),
4266         (gst_multi_fd_sink_get_stats),
4267         (gst_multi_fd_sink_remove_client_link),
4268         (gst_multi_fd_sink_handle_client_read),
4269         (gst_multi_fd_sink_client_queue_data),
4270         (gst_multi_fd_sink_client_queue_caps),
4271         (gst_multi_fd_sink_client_queue_buffer),
4272         (gst_multi_fd_sink_new_client),
4273         (gst_multi_fd_sink_handle_client_write),
4274         (gst_multi_fd_sink_recover_client),
4275         (gst_multi_fd_sink_queue_buffer),
4276         (gst_multi_fd_sink_handle_clients), (gst_multi_fd_sink_thread),
4277         (gst_multi_fd_sink_render), (gst_multi_fd_sink_set_property),
4278         (gst_multi_fd_sink_get_property), (gst_multi_fd_sink_start),
4279         (gst_multi_fd_sink_stop), (gst_multi_fd_sink_change_state):
4280         * gst/tcp/gstmultifdsink.h:
4281         * gst/tcp/gsttcpclientsink.c: (gst_tcp_client_sink_get_type),
4282         (gst_tcp_client_sink_base_init), (gst_tcp_client_sink_class_init),
4283         (gst_tcp_client_sink_init), (gst_tcp_client_sink_finalize),
4284         (gst_tcp_client_sink_setcaps), (gst_tcp_client_sink_render),
4285         (gst_tcp_client_sink_set_property),
4286         (gst_tcp_client_sink_get_property), (gst_tcp_client_sink_start),
4287         (gst_tcp_client_sink_stop), (gst_tcp_client_sink_change_state):
4288         * gst/tcp/gsttcpclientsink.h:
4289         * gst/tcp/gsttcpclientsrc.c: (gst_tcp_client_src_base_init),
4290         (gst_tcp_client_src_class_init), (gst_tcp_client_src_init),
4291         (gst_tcp_client_src_finalize), (gst_tcp_client_src_getcaps),
4292         (gst_tcp_client_src_create), (gst_tcp_client_src_set_property),
4293         (gst_tcp_client_src_get_property), (gst_tcp_client_src_start),
4294         (gst_tcp_client_src_stop), (gst_tcp_client_src_unlock):
4295         * gst/tcp/gsttcpclientsrc.h:
4296         * gst/tcp/gsttcpplugin.c: (plugin_init):
4297         * gst/tcp/gsttcpserversink.c: (gst_tcp_server_sink_base_init),
4298         (gst_tcp_server_sink_class_init), (gst_tcp_server_sink_init),
4299         (gst_tcp_server_sink_finalize),
4300         (gst_tcp_server_sink_handle_server_read),
4301         (gst_tcp_server_sink_removed), (gst_tcp_server_sink_handle_wait),
4302         (gst_tcp_server_sink_set_property),
4303         (gst_tcp_server_sink_get_property),
4304         (gst_tcp_server_sink_init_send), (gst_tcp_server_sink_close):
4305         * gst/tcp/gsttcpserversink.h:
4306         * gst/tcp/gsttcpserversrc.c: (gst_tcp_server_src_base_init),
4307         (gst_tcp_server_src_class_init), (gst_tcp_server_src_init),
4308         (gst_tcp_server_src_finalize), (gst_tcp_server_src_create),
4309         (gst_tcp_server_src_set_property),
4310         (gst_tcp_server_src_get_property), (gst_tcp_server_src_start),
4311         (gst_tcp_server_src_stop), (gst_tcp_server_src_unlock):
4312         * gst/tcp/gsttcpserversrc.h:
4313           more borgifying
4314
4315 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
4316
4317         * docs/plugins/Makefile.am:
4318         * docs/plugins/gst-plugins-base-plugins.args:
4319         * docs/plugins/inspect/plugin-libvisual.xml:
4320         * gst/audioconvert/plugin.h:
4321         * gst/audiorate/gstaudiorate.c: (gst_audio_rate_get_type),
4322         (gst_audio_rate_base_init), (gst_audio_rate_class_init),
4323         (gst_audio_rate_setcaps), (gst_audio_rate_init),
4324         (gst_audio_rate_chain), (gst_audio_rate_set_property),
4325         (gst_audio_rate_get_property), (gst_audio_rate_change_state),
4326         (plugin_init):
4327         * gst/audiotestsrc/gstaudiotestsrc.c:
4328         (gst_audiostestsrc_wave_get_type), (gst_audio_test_src_base_init),
4329         (gst_audio_test_src_class_init), (gst_audio_test_src_init),
4330         (gst_audio_test_src_src_fixate), (gst_audio_test_src_setcaps),
4331         (gst_audio_test_src_get_query_types),
4332         (gst_audio_test_src_src_query), (gst_audio_test_src_create_sine),
4333         (gst_audio_test_src_create_square),
4334         (gst_audio_test_src_create_saw),
4335         (gst_audio_test_src_create_triangle),
4336         (gst_audio_test_src_create_silence),
4337         (gst_audio_test_src_create_white_noise),
4338         (gst_audio_test_src_init_pink_noise),
4339         (gst_audio_test_src_generate_pink_noise_value),
4340         (gst_audio_test_src_create_pink_noise),
4341         (gst_audio_test_src_change_wave), (gst_audio_test_src_get_times),
4342         (gst_audio_test_src_create), (gst_audio_test_src_set_property),
4343         (gst_audio_test_src_get_property), (gst_audio_test_src_start),
4344         (plugin_init):
4345         * gst/audiotestsrc/gstaudiotestsrc.h:
4346         * gst/subparse/gstsubparse.c: (gst_sub_parse_get_type),
4347         (gst_sub_parse_base_init), (gst_sub_parse_class_init),
4348         (gst_sub_parse_init), (gst_sub_parse_formats),
4349         (gst_sub_parse_src_eventmask), (gst_sub_parse_src_event),
4350         (convert_encoding), (get_next_line),
4351         (gst_sub_parse_data_format_autodetect),
4352         (gst_sub_parse_format_autodetect), (feed_textbuf), (handle_buffer),
4353         (gst_sub_parse_loop), (gst_sub_parse_chain),
4354         (gst_sub_parse_change_state), (gst_sub_parse_type_find),
4355         (plugin_init):
4356         * gst/subparse/gstsubparse.h:
4357         * gst/videorate/gstvideorate.c: (gst_video_rate_get_type),
4358         (gst_video_rate_base_init), (gst_video_rate_class_init),
4359         (gst_video_rate_transformcaps), (gst_video_rate_getcaps),
4360         (gst_video_rate_setcaps), (gst_video_rate_blank_data),
4361         (gst_video_rate_init), (gst_video_rate_event),
4362         (gst_video_rate_chain), (gst_video_rate_set_property),
4363         (gst_video_rate_get_property), (gst_video_rate_change_state),
4364         (plugin_init):
4365         * gst/videoscale/gstvideoscale.c:
4366         (gst_video_scale_method_get_type), (gst_video_scale_get_capslist),
4367         (gst_video_scale_src_template_factory),
4368         (gst_video_scale_sink_template_factory),
4369         (gst_video_scale_get_type), (gst_video_scale_base_init),
4370         (gst_video_scale_class_init), (gst_video_scale_init),
4371         (gst_video_scale_set_property), (gst_video_scale_get_property),
4372         (gst_video_scale_transform_caps), (gst_video_scale_get_format),
4373         (gst_video_scale_prepare_size), (parse_caps),
4374         (gst_video_scale_set_caps), (gst_video_scale_get_unit_size),
4375         (gst_video_scale_fixate_caps), (gst_video_scale_prepare_image),
4376         (gst_video_scale_transform), (gst_video_scale_handle_src_event),
4377         (plugin_init):
4378         * gst/videoscale/gstvideoscale.h:
4379         * gst/videotestsrc/gstvideotestsrc.c:
4380         (gst_video_test_src_pattern_get_type),
4381         (gst_video_test_src_base_init), (gst_video_test_src_class_init),
4382         (gst_video_test_src_init), (gst_video_test_src_src_fixate),
4383         (gst_video_test_src_set_pattern),
4384         (gst_video_test_src_set_property),
4385         (gst_video_test_src_get_property), (gst_video_test_src_getcaps),
4386         (gst_video_test_src_parse_caps), (gst_video_test_src_setcaps),
4387         (gst_video_test_src_event), (gst_video_test_src_get_times),
4388         (gst_video_test_src_create), (plugin_init):
4389         * gst/videotestsrc/gstvideotestsrc.h:
4390         * gst/videotestsrc/videotestsrc.c: (gst_video_test_src_get_size),
4391         (gst_video_test_src_smpte), (gst_video_test_src_snow),
4392         (gst_video_test_src_black):
4393         * gst/videotestsrc/videotestsrc.h:
4394           borgify further
4395           clean up docs a little
4396
4397 2005-11-30  Wim Taymans  <wim@fluendo.com>
4398
4399         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4400         * gst-libs/gst/rtp/gstbasertppayload.c: (gst_basertppayload_init),
4401         (gst_basertppayload_event), (gst_basertppayload_push),
4402         (gst_basertppayload_change_state):
4403         * gst-libs/gst/rtp/gstbasertppayload.h:
4404         closed #320644.
4405
4406 2005-11-30  Julien MOUTTE  <julien@moutte.net>
4407
4408         * docs/libs/gst-plugins-base-libs-docs.sgml:
4409         * docs/libs/gst-plugins-base-libs-sections.txt:
4410         * gst-libs/gst/video/gstvideofilter.c:
4411         * gst-libs/gst/video/gstvideosink.c:
4412         * gst-libs/gst/video/gstvideosink.h: Adding docs.
4413
4414 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
4415
4416         * LICENSE:
4417           move
4418         * po/af.po:
4419         * po/az.po:
4420         * po/cs.po:
4421         * po/en_GB.po:
4422         * po/hu.po:
4423         * po/it.po:
4424         * po/nb.po:
4425         * po/nl.po:
4426         * po/or.po:
4427         * po/sq.po:
4428         * po/sr.po:
4429         * po/sv.po:
4430         * po/uk.po:
4431         * po/vi.po:
4432         * Makefile.am:
4433           update
4434         * scripts/autoplugins.sh:
4435           remove
4436
4437 2005-11-30  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
4438
4439         * Makefile.am:
4440         * configure.ac:
4441         * examples/Makefile.am:
4442         * examples/capsfilter/Makefile.am:
4443         * examples/capsfilter/capsfilter1.c:
4444         * examples/gob/Makefile.am:
4445         * examples/gob/gst-identity2.gob:
4446         * examples/indexing/.cvsignore:
4447         * examples/indexing/Makefile.am:
4448         * examples/indexing/indexmpeg.c:
4449         * examples/seeking/.cvsignore:
4450         * examples/seeking/Makefile.am:
4451         * examples/seeking/cdparanoia.c:
4452         * examples/seeking/cdplayer.c:
4453         * examples/seeking/chained.c:
4454         * examples/seeking/scrubby.c:
4455         * examples/seeking/seek.c:
4456         * examples/stats/Makefile.am:
4457         * examples/stats/mp2ogg.c:
4458         * examples/switch/.cvsignore:
4459         * examples/switch/Makefile.am:
4460         * examples/switch/switcher.c:
4461         * tests/Makefile.am:
4462         * tests/check/generic/.cvsignore:
4463         * tests/check/pipelines/.cvsignore:
4464         * tests/examples/Makefile.am:
4465         * tests/examples/seek/Makefile.am:
4466           reorganize stuff under tests/
4467
4468 2005-11-30  Edward Hervey  <edward@fluendo.com>
4469
4470         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
4471         Go away you stupid GstStaticPadTemplate memleak.
4472
4473 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
4474
4475         * gst-libs/gst/net/Makefile.am:
4476         * gst-libs/gst/net/README:
4477         * gst-libs/gst/net/gstnetbuffer.c:
4478         * gst-libs/gst/net/gstnetbuffer.h:
4479           this was moved to "netbuffer"
4480
4481 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
4482
4483         * gst-libs/gst/video/gstvideofilter.c: (gst_video_filter_get_type),
4484         (gst_video_filter_class_init), (gst_video_filter_init):
4485         * gst-libs/gst/video/gstvideofilter.h:
4486           borgify name to bring in line with other classes
4487
4488 2005-11-30  Thomas Vander Stichele  <thomas at apestaart dot org>
4489
4490         * gst/audioscale/.cvsignore:
4491         * gst/audioscale/Makefile.am:
4492         * gst/audioscale/README:
4493         * gst/audioscale/audioscale.vcproj:
4494         * gst/audioscale/dtof.c:
4495         * gst/audioscale/dtos.c:
4496         * gst/audioscale/functable.c:
4497         * gst/audioscale/gstaudioscale.c:
4498         * gst/audioscale/gstaudioscale.h:
4499         * gst/audioscale/private.h:
4500         * gst/audioscale/resample.c:
4501         * gst/audioscale/resample.h:
4502         * gst/audioscale/test.c:
4503           remove
4504
4505 2005-11-30  Edward Hervey  <edward@fluendo.com>
4506
4507         * gst-libs/gst/netbuffer/Makefile.am:
4508         really, really tired
4509
4510 2005-11-30  Edward Hervey  <edward@fluendo.com>
4511
4512         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
4513         Update for new GstTypeFindFactory _register()
4514
4515 2005-11-30  Edward Hervey  <edward@fluendo.com>
4516
4517         * gst-libs/gst/netbuffer/Makefile.am: (libgstnetbufferincludedir): 
4518         Let's not override libgstnet from core for no reason...
4519         (libgstnetbuffer_@GST_MAJORMINOR@_la_SOURCES):
4520         Ok, maybe not so quick next time.
4521
4522 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4523
4524         * configure.ac:
4525         * gst-libs/gst/Makefile.am:
4526           moved gst-libs/gst/net to netbuffer through CVS surgery
4527           remove old directory
4528           updating build to accomodate
4529           (#322257)
4530
4531 2005-11-29  Andy Wingo  <wingo@pobox.com>
4532
4533         * pkgconfig/gstreamer-plugins-base.pc.in:
4534         * pkgconfig/gstreamer-plugins-base-uninstalled.pc.in:
4535         * gst-libs/gst/net/Makefile.am: Rename gstnet to gstnetbuffer
4536         (#322257).
4537
4538 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
4539
4540         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
4541         3rd time's the charm. Correct ref-counting for discarded buffers.
4542
4543 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
4544
4545         * gst/playback/gststreamselector.c:
4546         (gst_stream_selector_class_init),
4547         (gst_stream_selector_set_property),
4548         (gst_stream_selector_get_property),
4549         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
4550         Fix ref-counting
4551
4552 2005-11-29  Tim-Philipp Müller  <tim at centricular dot net>
4553
4554         * gst/subparse/gstsubparse.c: (feed_textbuf):
4555           Don't access already unref'ed buffer.
4556
4557 2005-11-29  Jan Schmidt  <thaytan@mad.scientist.com>
4558
4559         * gst/playback/gststreamselector.c:
4560         (gst_stream_selector_class_init), (gst_stream_selector_init),
4561         (gst_stream_selector_dispose), (gst_stream_selector_set_property),
4562         (gst_stream_selector_get_property),
4563         (gst_stream_selector_get_linked_pad),
4564         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
4565         * gst/playback/gststreamselector.h:
4566         Add the active-pad property for playbin to use shortly. Ignore buffers
4567         from any other pad, returning GST_FLOW_NOT_LINKED
4568
4569 2005-11-29  Julien MOUTTE  <julien@moutte.net>
4570
4571         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find): Free the list,
4572         patch from bug #322704 (Alessandro Decina).
4573
4574 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4575
4576         * gst-libs/gst/audio/Makefile.am:
4577           folded audiofilter into the audio library
4578
4579 2005-11-29  Thomas Vander Stichele  <thomas at apestaart dot org>
4580
4581         * gst/videoscale/gstvideoscale.h:
4582         * gst/videoscale/gstvideoscale.c:
4583           remove unimplemented scale methods
4584
4585 2005-11-28  Tim-Philipp Müller  <tim at centricular dot net>
4586
4587         * ext/ogg/gstoggmux.c: (gst_ogg_mux_send_headers):
4588           Don't leak caps.
4589
4590 2005-11-28  Julien MOUTTE  <julien@moutte.net>
4591
4592         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
4593         (gst_ximagesink_setcaps):
4594         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
4595         (gst_xvimagesink_setcaps): Fixed a tricky bug. When caps renegotiation
4596         happens (only visible on ximagesink but bug is in xv too) set_caps was
4597         destroying the internal x[v]image used to memcpy non locally alloced
4598         buffers so that it got renewed on next _chain. The issue is that 
4599         _expose will try to put that image as it reffed it in _put.
4600         Using gst_buffer_unref instead of destroy fixes it !
4601
4602 2005-11-28  Edward Hervey  <edward@fluendo.com>
4603
4604         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
4605         (try_to_link_1), (queue_filled_cb):
4606         Better use of the queues. Start with a small size queue and only increase
4607         the size of the queues when the other queues are empty.
4608
4609 2005-11-28  Thomas Vander Stichele  <thomas at apestaart dot org>
4610
4611         * gst-libs/gst/video/Makefile.am:
4612           compile in copied-over videofilter into the video library
4613         * gst-libs/gst/video/videosink.h:
4614           rename the header to gstvideosink.h since it's a base GstObject class
4615         * sys/ximage/ximagesink.h:
4616         * sys/xvimage/xvimagesink.h:
4617           use the new header
4618
4619 2005-11-28  Wim Taymans  <wim@fluendo.com>
4620
4621         * gst/playback/gstplaybasebin.c: (group_commit), (probe_triggered):
4622         * gst/playback/gstplaybasebin.h:
4623         Prepare to handle errors betters.
4624
4625         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
4626         Set sinks to PAUSED first before adding and linking them so that
4627         we don't interrupt dataflow.
4628
4629 2005-11-28  Wim Taymans  <wim@fluendo.com>
4630
4631         * gst-libs/gst/audio/TODO:
4632         Updated TODO
4633
4634         * gst-libs/gst/audio/gstaudiosink.c:
4635         (gst_audioringbuffer_open_device),
4636         (gst_audioringbuffer_close_device), (gst_audioringbuffer_acquire),
4637         (gst_audioringbuffer_release):
4638         Small cleanups.
4639
4640         * gst-libs/gst/audio/gstbaseaudiosink.c:
4641         (gst_base_audio_sink_class_init), (gst_base_audio_sink_render),
4642         (gst_base_audio_sink_change_state):
4643         Slave to the master clock when going to PLAYING and unslave when
4644         going to PAUSED.
4645
4646         * gst-libs/gst/audio/gstringbuffer.c:
4647         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
4648         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
4649         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
4650         (gst_ring_buffer_clear_all), (wait_segment),
4651         (gst_ring_buffer_commit), (gst_ring_buffer_read),
4652         (gst_ring_buffer_advance):
4653         * gst-libs/gst/audio/gstringbuffer.h:
4654         Add some docs and cleanups.
4655
4656 2005-11-28  Julien MOUTTE  <julien@moutte.net>
4657
4658         * sys/xvimage/xvimagesink.c:
4659         (gst_xvimagesink_navigation_send_event): Fix navigation events
4660         coordinates translation with pixel aspect ratios.
4661
4662 2005-11-28  Julien MOUTTE  <julien@moutte.net>
4663
4664         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put):
4665         Use calculated video geometry from _setcaps instead of buffer
4666         caps to respect pixel aspect ratio. (fixes #322388)
4667
4668 2005-11-28  Julien MOUTTE  <julien@moutte.net>
4669
4670         * docs/libs/tmpl/gstcolorbalance.sgml:
4671         * docs/libs/tmpl/gstmixer.sgml:
4672         * docs/libs/tmpl/gstxoverlay.sgml:
4673         * gst-libs/gst/interfaces/xoverlay.c: Add docs for the Xoverlay
4674         interface.
4675
4676 2005-11-28  Julien MOUTTE  <julien@moutte.net>
4677
4678         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new):
4679         Refuse to create an XvImage if we can't find the format.
4680
4681 2005-11-28  Edward Hervey  <edward@fluendo.com>
4682
4683         * gst-libs/gst/riff/riff-media.c:
4684         (gst_riff_create_audio_template_caps):
4685         Add ATRAC3 to the list of riff-possible audio caps.
4686         I know we still don't have a plugin for atrac3, but it's saner to output
4687         that than a cryptic mimetype.
4688
4689 2005-11-27  Edward Hervey  <edward@fluendo.com>
4690
4691         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_strf_auds):
4692         Don't try to create a zero-sized subbuffer.
4693
4694 2005-11-27  Julien MOUTTE  <julien@moutte.net>
4695
4696         * sys/ximage/ximagesink.c: (gst_ximage_buffer_free),
4697         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_put),
4698         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_buffer_alloc),
4699         (gst_ximagesink_expose): Fixed a tricky race.
4700         * sys/ximage/ximagesink.h:
4701         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
4702         (gst_xvimagesink_expose): Fixed a tricky race.
4703         * sys/xvimage/xvimagesink.h:
4704
4705 2005-11-27  Edward Hervey  <edward@fluendo.com>
4706
4707         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
4708         (gst_decode_bin_init), (close_pad_link), (try_to_link_1):
4709         Remove unused properties, and add queues between demuxers and decoders
4710         so that a lot more files can preroll properly.
4711
4712 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
4713
4714         * gst-libs/gst/net/Makefile.am:
4715         * gst-libs/gst/rtp/Makefile.am:
4716         * gst-libs/gst/tag/Makefile.am:
4717           remove silly include
4718         * gst/tags/Makefile.am:
4719         * gst/tags/gsttagediting.c:
4720         * gst/tags/gsttageditingprivate.h:
4721         * gst/tags/tagedit.vcproj:
4722           remove directory, is as good as empty
4723
4724 2005-11-27  Thomas Vander Stichele  <thomas at apestaart dot org>
4725
4726         * configure.ac:
4727           added GST_LIB_LDFLAGS and GST_ALL_LDFLAGS
4728         * gst-libs/Makefile.am:
4729         * gst-libs/gst/audio/Makefile.am:
4730         * gst-libs/gst/interfaces/Makefile.am:
4731         * gst-libs/gst/net/Makefile.am:
4732         * gst-libs/gst/riff/Makefile.am:
4733         * gst-libs/gst/rtp/Makefile.am:
4734         * gst-libs/gst/tag/Makefile.am:
4735         * gst-libs/gst/video/Makefile.am:
4736           and use them
4737
4738 2005-11-27  Julien MOUTTE  <julien@moutte.net>
4739
4740         * docs/libs/tmpl/gstcolorbalance.sgml:
4741         * docs/libs/tmpl/gstmixer.sgml:
4742         * docs/libs/tmpl/gstxoverlay.sgml:
4743         * sys/ximage/ximagesink.c: (gst_ximagesink_buffer_alloc):
4744         * sys/ximage/ximagesink.h:
4745         * sys/xvimage/xvimagesink.h: More and more documentation.
4746
4747 2005-11-26  Julien MOUTTE  <julien@moutte.net>
4748
4749         * docs/libs/gst-plugins-base-libs-docs.sgml:
4750         * docs/libs/gst-plugins-base-libs-sections.txt:
4751         * docs/libs/tmpl/gstcolorbalance.sgml:
4752         * docs/libs/tmpl/gstmixer.sgml:
4753         * docs/libs/tmpl/gstxoverlay.sgml: Add the XOverlay interface
4754         to documentation.
4755
4756 2005-11-26  Julien MOUTTE  <julien@moutte.net>
4757
4758         * docs/plugins/Makefile.am:
4759         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4760         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4761         * sys/xvimage/xvimagesink.c: Added doc for xvimagesink.
4762
4763 2005-11-26  Julien MOUTTE  <julien@moutte.net>
4764
4765         * docs/plugins/Makefile.am:
4766         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
4767         * docs/plugins/gst-plugins-base-plugins-sections.txt:
4768         * docs/plugins/inspect/plugin-adder.xml:
4769         * docs/plugins/inspect/plugin-alsa.xml:
4770         * docs/plugins/inspect/plugin-audioconvert.xml:
4771         * docs/plugins/inspect/plugin-audiorate.xml:
4772         * docs/plugins/inspect/plugin-audioresample.xml:
4773         * docs/plugins/inspect/plugin-audiotestsrc.xml:
4774         * docs/plugins/inspect/plugin-decodebin.xml:
4775         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
4776         * docs/plugins/inspect/plugin-gnomevfs.xml:
4777         * docs/plugins/inspect/plugin-ogg.xml:
4778         * docs/plugins/inspect/plugin-playbin.xml:
4779         * docs/plugins/inspect/plugin-subparse.xml:
4780         * docs/plugins/inspect/plugin-tcp.xml:
4781         * docs/plugins/inspect/plugin-theora.xml:
4782         * docs/plugins/inspect/plugin-typefindfunctions.xml:
4783         * docs/plugins/inspect/plugin-video4linux.xml:
4784         * docs/plugins/inspect/plugin-videorate.xml:
4785         * docs/plugins/inspect/plugin-videoscale.xml:
4786         * docs/plugins/inspect/plugin-videotestsrc.xml:
4787         * docs/plugins/inspect/plugin-volume.xml:
4788         * docs/plugins/inspect/plugin-vorbis.xml:
4789         * docs/plugins/inspect/plugin-ximagesink.xml:
4790         * docs/plugins/inspect/plugin-xvimagesink.xml: Updated version.
4791         * sys/ximage/ximagesink.c: Adding documentation for ximagesink.
4792
4793 2005-11-26  Edward Hervey  <edward@fluendo.com>
4794
4795         * gst/audiorate/gstaudiorate.c: (gst_audiorate_chain):
4796         Properly return GstFlowReturn from gst_pad_push in chain functions.
4797
4798 2005-11-25  Michael Smith  <msmith@fluendo.com>
4799
4800         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
4801         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
4802         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
4803         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
4804           Handle various conditions better when we don't understand a stream.
4805           Removes a heap of CRITICALs on ogg streams containing unknown data.
4806
4807 2005-11-24  Andy Wingo  <wingo@pobox.com>
4808
4809         * gst/tcp/gstmultifdsink.c (gst_multifdsink_handle_client_write):
4810         Be threadsafe.
4811
4812 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4813
4814         * configure.ac: back to HEAD
4815
4816 === release 0.9.6 ===
4817
4818 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
4819
4820         * configure.ac:
4821           releasing 0.9.6, "White Eight"
4822
4823 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4824
4825         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
4826         * docs/plugins/inspect/plugin-sine.xml:
4827           remove sinesrc some more
4828
4829 2005-11-23  Wim Taymans  <wim@fluendo.com>
4830
4831         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
4832         If we are reading too slowly, jump forward in the ringbuffer
4833         instead of blocking.
4834
4835 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
4836
4837         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
4838         (gst_visual_chain):
4839         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps):
4840         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps),
4841         (gst_videorate_chain):
4842         * gst/videotestsrc/gstvideotestsrc.c:
4843         (gst_videotestsrc_src_fixate), (gst_videotestsrc_create):
4844         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_fps),
4845         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query),
4846         (gst_v4lmjpegsrc_get), (gst_v4lmjpegsrc_getcaps):
4847         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
4848         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
4849           Updates for API changes
4850
4851 2005-11-23  Wim Taymans  <wim@fluendo.com>
4852
4853         * gst-libs/gst/audio/gstbaseaudiosink.c:
4854         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
4855         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4856         Fix for calibration API change.
4857
4858 2005-11-23  Michael Smith <msmith@fluendo.com>
4859
4860         * gst-libs/gst/audio/multichannel.c:
4861         (gst_audio_get_channel_positions),
4862         (gst_audio_set_channel_positions),
4863         (gst_audio_set_structure_channel_positions_list),
4864         (gst_audio_fixate_channel_positions):
4865           Use gst_value_array_*() functions on value arrays, not
4866           gst_value_list_*().
4867
4868 2005-11-23  Edward Hervey  <edward@fluendo.com>
4869
4870         * autogen.sh:
4871         eheh, sinesrc is gone. Replacing sample srcfile by existing one.
4872         Fixes autogen
4873
4874 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4875
4876         * check/Makefile.am:
4877         * check/elements/videotestsrc.c: (setup_videotestsrc),
4878         (cleanup_videotestsrc), (GST_START_TEST), (videotestsrc_suite),
4879         (main):
4880           add a test for videotestsrc
4881
4882 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4883
4884         * gst/sine/.cvsignore:
4885         * gst/sine/Makefile.am:
4886         * gst/sine/gstsinesrc.c:
4887         * gst/sine/gstsinesrc.h:
4888         * gst/sine/sinesrc.vcproj:
4889           and remove sinesrc from the repository.  Closes #321446
4890
4891 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4892
4893         * configure.ac:
4894         * gst-plugins-base.spec.in:
4895           remove sinesrc from the build
4896
4897 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
4898
4899         * check/Makefile.am:
4900         * check/elements/audiotestsrc.c: (setup_audiotestsrc),
4901         (cleanup_audiotestsrc), (GST_START_TEST), (audiotestsrc_suite),
4902         (main):
4903           add a test for audiotestsrc, testing all waves.  Even seems
4904           leak-free at first glance, nice job Stefan
4905
4906 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
4907
4908         * po/af.po:
4909         * po/az.po:
4910         * po/cs.po:
4911         * po/en_GB.po:
4912         * po/hu.po:
4913         * po/it.po:
4914         * po/nb.po:
4915         * po/nl.po:
4916         * po/or.po:
4917         * po/sq.po:
4918         * po/sr.po:
4919         * po/sv.po:
4920         * po/uk.po:
4921         * po/vi.po:
4922           Translation string updates
4923
4924         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
4925         (gst_v4lsrc_set_caps):
4926         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
4927         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
4928         * sys/v4l/v4lsrc_calls.h:
4929           Improve v4lsrc, by making it work again.
4930
4931 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
4932
4933         * ext/libvisual/visual.c: (gst_visual_chain):
4934           Fix the fps calculations.
4935
4936         * gst/ffmpegcolorspace/avcodec.h:
4937           Move structure element for clarity
4938
4939         * gst-libs/gst/interfaces/tunernorm.c: (gst_tuner_norm_init):
4940         * gst-libs/gst/interfaces/tunernorm.h:
4941         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_src_link):
4942         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
4943         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
4944         (gst_v4lmjpegsrc_get_fps), (gst_v4lmjpegsrc_src_convert),
4945         (gst_v4lmjpegsrc_src_query), (gst_v4lmjpegsrc_get),
4946         (gst_v4lmjpegsrc_getcaps):
4947         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate), (gst_v4lsrc_get_caps),
4948         (gst_v4lsrc_set_caps):
4949         * sys/v4l/gstv4lsrc.h:
4950         * sys/v4l/v4l_calls.c: (gst_v4l_open):
4951         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_get_fps),
4952         (gst_v4lsrc_get_fps_list), (gst_v4lsrc_buffer_new):
4953         * sys/v4l/v4lsrc_calls.h:
4954           Fractional framerates...
4955
4956 2005-11-22  Wim Taymans  <wim@fluendo.com>
4957
4958         * gst-libs/gst/audio/gstbaseaudiosink.c:
4959         (gst_base_audio_sink_class_init), (gst_base_audio_sink_set_clock),
4960         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4961         And we provide a clock by default, of course...
4962
4963 2005-11-22  Wim Taymans  <wim@fluendo.com>
4964
4965         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init):
4966         This clock can be slaved to a master clock now.
4967
4968         * gst-libs/gst/audio/gstbaseaudiosink.c:
4969         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
4970         (gst_base_audio_sink_dispose), (gst_base_audio_sink_provide_clock),
4971         (gst_base_audio_sink_set_clock),
4972         (gst_base_audio_sink_set_property),
4973         (gst_base_audio_sink_get_property), (gst_base_audio_sink_preroll),
4974         (gst_base_audio_sink_render), (gst_base_audio_sink_change_state):
4975         * gst-libs/gst/audio/gstbaseaudiosink.h:
4976         Handle slaving the internal clock to the clock selected in the
4977         pipeline.
4978         Add property to make the basesink not provide a clock.
4979
4980         * gst-libs/gst/rtp/gstbasertpdepayload.c:
4981         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
4982         (gst_base_rtp_depayload_wait):
4983         * gst-libs/gst/rtp/gstbasertpdepayload.h:
4984         We can use the clock in GstElement, no need to store it ourselves.
4985
4986 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
4987
4988         * docs/libs/tmpl/gstaudio.sgml:
4989           update
4990         * ext/cdparanoia/gstcdparanoia.c: (gst_paranoia_mode_get_type),
4991         (gst_paranoia_endian_get_type):
4992         * ext/theora/theoraenc.c: (gst_border_mode_get_type):
4993         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
4994         * gst/audiotestsrc/gstaudiotestsrc.c:
4995         (gst_audiostestsrc_wave_get_type):
4996         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type):
4997         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
4998         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
4999         (gst_sync_method_get_type), (gst_unit_type_get_type),
5000         (gst_client_status_get_type), (gst_multifdsink_class_init),
5001         (gst_multifdsink_new_client), (gst_multifdsink_recover_client),
5002         (gst_multifdsink_queue_buffer), (gst_multifdsink_set_property),
5003         (gst_multifdsink_get_property):
5004         * gst/tcp/gstmultifdsink.h:
5005         * gst/videoscale/gstvideoscale.c: (gst_videoscale_method_get_type):
5006         * gst/videotestsrc/gstvideotestsrc.c:
5007         (gst_videotestsrc_pattern_get_type):
5008           remove deprecated properties
5009           fix up enums to correctly have short lowercase dashed nicks
5010
5011 2005-11-22  Michael Smith <msmith@fluendo.com>
5012
5013         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
5014         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
5015           Add underscore.
5016
5017 2005-11-22  Michael Smith <msmith@fluendo.com>
5018
5019         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
5020         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
5021           Use utility method for scaling clocktime for fractional framerates.
5022
5023 2005-11-22  Jan Schmidt  <thaytan@mad.scientist.com>
5024
5025         * ext/libvisual/visual.c: (gst_visual_src_setcaps), (get_buffer),
5026         (gst_visual_chain):
5027         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
5028         * ext/theora/theoradec.c: (theora_handle_type_packet):
5029         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
5030         (theora_enc_chain):
5031         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
5032         * gst-libs/gst/video/video.c: (gst_video_frame_rate):
5033         * gst-libs/gst/video/video.h:
5034         * gst/ffmpegcolorspace/avcodec.h:
5035         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5036         (gst_ffmpeg_caps_to_pixfmt):
5037         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5038         (gst_ffmpegcsp_set_caps):
5039         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
5040         (gst_videorate_setcaps), (gst_videorate_blank_data),
5041         (gst_videorate_chain):
5042         * gst/videotestsrc/gstvideotestsrc.c:
5043         (gst_videotestsrc_src_fixate), (gst_videotestsrc_getcaps),
5044         (gst_videotestsrc_parse_caps), (gst_videotestsrc_setcaps),
5045         (gst_videotestsrc_event), (gst_videotestsrc_create):
5046         * gst/videotestsrc/gstvideotestsrc.h:
5047         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
5048         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
5049         (gst_ximagesink_get_times), (gst_ximagesink_init):
5050         * sys/ximage/ximagesink.h:
5051         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
5052         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
5053         (gst_xvimagesink_get_times), (gst_xvimagesink_init):
5054         * sys/xvimage/xvimagesink.h:
5055           Convert elements to use fractions for their framerate.
5056           V4L elements to come later tonight.
5057
5058 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5059
5060         * gst-libs/gst/audio/audio.c:
5061         * gst-libs/gst/audio/audio.h:
5062           remove some deprecated functions
5063
5064 2005-11-22  Andy Wingo  <wingo@pobox.com>
5065
5066         * Update for gst_tag_setter API changes.
5067
5068 2005-11-22  Andy Wingo  <wingo@pobox.com>
5069
5070         * ext/ogg/gstoggdemux.c (gst_ogg_pad_submit_packet)
5071         (gst_ogg_demux_perform_seek):
5072         * ext/theora/theoradec.c (theora_dec_sink_event):
5073         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): Run
5074         update-funcnames.
5075
5076 2005-11-22  Wim Taymans  <wim@fluendo.com>
5077
5078         * examples/seeking/seek.c: (main):
5079         Give higher priority to bus signals than the gtk events
5080         to fix a race condition in the segment looping.
5081
5082 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
5083
5084         * ext/theora/Makefile.am:
5085         * ext/vorbis/Makefile.am:
5086         * gst-libs/gst/tag/Makefile.am:
5087         * gst-plugins-base.spec.in:
5088           Rename libgsttagedit to libgsttag (#322117).
5089
5090 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
5091
5092         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
5093         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5094           Call gst_x_overlay_prepare_xwindow_id() to give applications
5095           a final chance to set their own xwindow id before the video
5096           sink creates its own window.
5097
5098 2005-11-22  Julien MOUTTE  <julien@moutte.net>
5099
5100         * sys/xvimage/xvimagesink.c:
5101         (gst_xvimagesink_navigation_send_event): Handle navigation
5102         events correcly with borders if applicable.
5103
5104 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
5105
5106         Patch by: Luca Ognibene
5107
5108         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5109         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt):
5110         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5111         (gst_ffmpegcsp_caps_remove_format_info):
5112         * gst/ffmpegcolorspace/imgconvert.c:
5113         * gst/ffmpegcolorspace/imgconvert_template.h:
5114           Forward-port fixes from the 0.8 branch (patch by Luca Ognibene,
5115           #318353); use gst_structure_has_name().
5116
5117 2005-11-22  Julien MOUTTE  <julien@moutte.net>
5118
5119         * sys/ximage/ximagesink.c: (gst_ximagesink_event_thread),
5120         (gst_ximagesink_class_init): Add debug macros on functions.
5121         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
5122         (gst_xvimagesink_xwindow_draw_borders),
5123         (gst_xvimagesink_xvimage_put),
5124         (gst_xvimagesink_xwindow_update_geometry),
5125         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_get_xv_support),
5126         (gst_xvimagesink_event_thread), (gst_xvimagesink_xcontext_get),
5127         (gst_xvimagesink_xcontext_clear),
5128         (gst_xvimagesink_get_format_from_caps), (gst_xvimagesink_setcaps),
5129         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
5130         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
5131         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
5132         (gst_xvimagesink_get_property), (gst_xvimagesink_finalize),
5133         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
5134         * sys/xvimage/xvimagesink.h: Refactoring to handle aspect ratio,
5135         expose while being PAUSED, out of data flow navigation events, etc..
5136
5137 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
5138
5139         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
5140         * gst-libs/gst/audio/audio.h:
5141           fix prototype - wondering why the test worked regardless
5142
5143 2005-11-21  Thomas Vander Stichele  <thomas at apestaart dot org>
5144
5145         * check/Makefile.am:
5146         * gst-libs/gst/audio/audio.c: (gst_audio_duration_from_pad_buffer):
5147         * gst-libs/gst/audio/audio.h:
5148           add a method that returns a proper GstClockTime
5149
5150 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
5151
5152         * gst-libs/gst/interfaces/xoverlay.c: (gst_x_overlay_base_init),
5153         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_prepare_xwindow_id):
5154         * gst-libs/gst/interfaces/xoverlay.h:
5155           Remove everything having to do with the desired size; add 
5156           gst_x_overlay_prepare_xwindow_id() function; remove the
5157           'have-xwindow-id' signal and make gst_x_overlay_got_xwindow_id()
5158           post a message on the bus instead (#321816).
5159
5160         * sys/ximage/ximagesink.c: (gst_ximagesink_xoverlay_init):
5161         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps),
5162         (gst_xvimagesink_xoverlay_init):
5163           Remove desired size stuff (#321816).
5164
5165 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
5166
5167         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
5168         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
5169         (mpeg_video_type_find), (mpeg_video_stream_type_find):
5170           Terminate vararg functions with NULL instead of 0 to 
5171           make gcc4 happy.
5172
5173 2005-11-21  Andy Wingo  <wingo@pobox.com>
5174
5175         patch by: Sebastien Cote <sebas642@yahoo.ca>
5176         
5177         * gst-libs/gst/rtp/gstrtpbuffer.h: 
5178         * gst-libs/gst/rtp/gstrtpbuffer.c
5179         (gst_rtpbuffer_get_payload_buffer): New function. Fixes #321451.
5180
5181 2005-11-21  Andy Wingo  <wingo@pobox.com>
5182
5183         * gst/playback/gstplaybin.c (gen_audio_element) 
5184         (gen_video_element): Use the new MISSING_PLUGIN core error
5185         category. Closes #320060.
5186
5187         * ext/vorbis/vorbisdec.c (vorbis_dec_sink_event): 
5188         * gst/videorate/gstvideorate.c (gst_videorate_event):
5189         * ext/theora/theoradec.c (theora_dec_sink_event): 
5190         * ext/theora/theoraenc.c (theora_enc_sink_event): Don't take
5191         stream lock.
5192
5193         * gst/subparse/gstsubparse.c (gst_subparse_src_event):
5194         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek): Update for
5195         stream lock changes.
5196
5197 2005-11-21  Wim Taymans  <wim@fluendo.com>
5198
5199         * gst-libs/gst/audio/gstbaseaudiosink.c:
5200         (gst_base_audio_sink_class_init), (gst_base_audio_sink_init),
5201         (gst_base_audio_sink_provide_clock),
5202         (gst_base_audio_sink_set_clock), (gst_base_audio_sink_render),
5203         (gst_base_audio_sink_change_state):
5204         * gst/audioresample/gstaudioresample.c:
5205         Segment update fix.
5206
5207 2005-11-21  Andy Wingo  <wingo@pobox.com>
5208
5209         * *.h:
5210         * *.c: Ran scripts/update-macros. Oh yes.
5211
5212 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
5213
5214         * sys/ximage/Makefile.am:
5215         * sys/ximage/ximage.c:
5216           Rename ximage plugin to ximagesink (#321426) (Don't forget to
5217           remove your old libgstximage.* manually if necessary).
5218
5219 2005-11-21  Michael Smith <msmith@fluendo.com>
5220
5221         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup):
5222           Minimal fix for bug #320200: set the min/max bitrate in the correct
5223           units. A better fix would be to upgrade to the RATEMANAGE2
5224           interface, rather than using the deprecated interface used here, but
5225           that would require an update in our libvorbis dependency (to 1.1),
5226           which is probably undesirable.
5227
5228 2005-11-21  Jan Schmidt  <thaytan@mad.scientist.com>
5229
5230         * ext/libvisual/visual.c: (get_buffer):
5231         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5232         (gst_base_audio_src_fixate):
5233         * gst/audioconvert/gstaudioconvert.c:
5234         (gst_audio_convert_fixate_caps):
5235         * gst/audioscale/gstaudioscale.c: (gst_audioscale_fixate):
5236         * gst/audiotestsrc/gstaudiotestsrc.c:
5237         (gst_audiotestsrc_src_fixate):
5238         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
5239         * gst/videorate/gstvideorate.c: (gst_videorate_setcaps):
5240         * gst/videoscale/gstvideoscale.c: (gst_videoscale_fixate_caps):
5241         * gst/videotestsrc/gstvideotestsrc.c:
5242         (gst_videotestsrc_src_fixate):
5243         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate):
5244         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
5245           Rename gst_caps_structure_fixate_* to gst_structure_fixate_*
5246           (#322027)
5247
5248
5249 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
5250
5251         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
5252         (gst_riff_create_iavs_caps):
5253         * gst-libs/gst/riff/riff-read.c: (gst_riff_parse_file_header),
5254         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
5255         (gst_riff_parse_info):
5256         * gst/videotestsrc/videotestsrc.c: (paintinfo_find_by_structure):
5257         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_caps):
5258         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps):
5259           Fixes for GST_FOURCC_FORMAT API change.
5260
5261 2005-11-21  Andy Wingo  <wingo@pobox.com>
5262
5263         patch by: Alessandro Dessina <alessandro nnva org>
5264
5265         * ext/ogg/gstoggmux.c (gst_ogg_mux_set_header_on_caps):
5266         * ext/ogg/gstoggparse.c (gst_ogg_parse_append_header)
5267         (gst_ogg_parse_chain):
5268         * ext/theora/theoraenc.c (theora_set_header_on_caps):
5269         * ext/vorbis/vorbisenc.c (gst_vorbisenc_set_header_on_caps):
5270         * ext/vorbis/vorbisparse.c (vorbis_parse_set_header_on_caps): Fix
5271         gst_value_list calls on arrays. Fixes #321962.
5272
5273 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
5274
5275         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
5276         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_queue_pads),
5277         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5278         * gst/adder/gstadder.c: (gst_adder_init),
5279         (gst_adder_request_new_pad), (gst_adder_collected),
5280         (gst_adder_change_state):
5281           Update for gst_collectpads_foo() to gst_collect_pads_foo()
5282           API change.
5283
5284 2005-11-21  Michael Smith <msmith@fluendo.com>
5285
5286         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
5287         (gst_vorbisenc_chain), (gst_vorbisenc_output_buffers):
5288           Properly handle pad_push return values.
5289
5290 2005-11-20  Jan Schmidt  <thaytan@mad.scientist.com>
5291
5292         * gst-libs/gst/tag/Makefile.am:
5293         * gst-libs/gst/tag/gstvorbistag.c:
5294         (gst_tag_list_to_vorbiscomment_buffer):
5295           Remove obsolete vorbistag element and debug category.
5296
5297         * gst/playback/gstplaybasebin.c: (check_queue):
5298           Don't divide by 0 when queue-threshold is 0.
5299
5300         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property):
5301           Don't modify an existing pixel-aspect-ratio if we fail to read
5302           a new one.
5303
5304 2005-11-20  Wim Taymans  <wim@fluendo.com>
5305
5306         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_push_buffer),
5307         (gst_vorbisenc_push_packet):
5308         GST_PAD_IS_USABLE is gone, use the return value of
5309         the push or pad_alloc_buffer instead.
5310
5311 2005-11-18  Julien MOUTTE  <julien@moutte.net>
5312
5313         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
5314         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
5315         (gst_ximagesink_ximage_destroy),
5316         (gst_ximagesink_xwindow_draw_borders), (gst_ximagesink_ximage_put),
5317         (gst_ximagesink_xwindow_new),
5318         (gst_ximagesink_xwindow_update_geometry),
5319         (gst_ximagesink_handle_xevents), (gst_ximagesink_event_thread),
5320         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
5321         (gst_ximagesink_bufferpool_clear), (gst_ximagesink_getcaps),
5322         (gst_ximagesink_setcaps), (gst_ximagesink_change_state),
5323         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_alloc),
5324         (gst_ximagesink_navigation_send_event),
5325         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_expose),
5326         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
5327         (gst_ximagesink_finalize), (gst_ximagesink_init),
5328         (gst_ximagesink_class_init):
5329         * sys/ximage/ximagesink.h: Refactoring of ximagesink.
5330         This new version brings correct software scaling, non flickering
5331         window while resizing, pixel aspect ratio handling, usage of
5332         hardware buffer pools, out of data flow event thread for 
5333         navigation and handling of expose events even when being PAUSED,
5334         a new property to keep video aspect ratio when resizing, etc...
5335
5336 2005-11-18  Julien MOUTTE  <julien@moutte.net>
5337
5338         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
5339         (gst_videoscale_fixate_caps): Introduce back caps fixate with
5340         handling of PAR.
5341
5342 2005-11-18    <bilboed@dvdsrc.fluendo.com>
5343
5344         * gst/playback/gstdecodebin.c: (gst_decode_bin_init): 
5345         Unsetting IS_SINK flag from the fakesink, so decodebin
5346         never behaves as a sink.
5347
5348 2005-11-17  Wim Taymans  <wim@fluendo.com>
5349
5350         * gst-libs/gst/audio/gstbaseaudiosrc.c:
5351         (gst_base_audio_src_change_state):
5352         Fix the audiosrc base class again, we did not unflush.
5353
5354 2005-11-17  Julien MOUTTE  <julien@moutte.net>
5355
5356         * examples/seeking/seek.c: (make_dv_pipeline),
5357         (make_vorbis_theora_pipeline), (make_avi_pipeline),
5358         (make_mpegnt_pipeline): Use VSINK everywhere, add a scaler
5359         to ogg/vorbis/theora pipeline.
5360
5361 2005-11-17  Wim Taymans  <wim@fluendo.com>
5362
5363         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
5364         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
5365         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
5366         Fix EOS on multiple streams.
5367         More debugging.
5368
5369 2005-11-16  Wim Taymans  <wim@fluendo.com>
5370
5371         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_configure_segment),
5372         (gst_ogg_demux_perform_seek):
5373         Segment done must include stream time.
5374
5375         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
5376         (gst_ogg_mux_clear), (gst_ogg_mux_init), (gst_ogg_mux_finalize),
5377         (gst_ogg_mux_change_state):
5378         Fix ogg muxer again.
5379
5380 2005-11-16  Wim Taymans  <wim@fluendo.com>
5381
5382         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init):
5383         Fix compile again.
5384
5385 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5386
5387         * ext/libvisual/visual.c: (gst_visual_init):
5388         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
5389         * ext/ogg/gstoggparse.c: (gst_ogg_parse_init),
5390         (gst_ogg_parse_chain):
5391         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
5392         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init):
5393         * ext/theora/theoradec.c: (gst_theora_dec_init):
5394         * ext/theora/theoraenc.c: (gst_theora_enc_init):
5395         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
5396         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_init):
5397         * gst/adder/gstadder.c: (gst_adder_class_init),
5398         (gst_adder_dispose):
5399         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
5400         * gst/subparse/gstsubparse.c: (gst_subparse_init):
5401         * gst/videorate/gstvideorate.c: (gst_videorate_init):
5402           Fix a whole set of pad template leaks
5403
5404 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5405
5406         * check/generic/states.c: (GST_START_TEST):
5407           fix the test so that it only checks for elements that are part of
5408           this source module
5409
5410 2005-11-16  Michael Smith <msmith@fluendo.com>
5411
5412         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_reset),
5413         (gst_ogg_mux_init), (gst_ogg_mux_request_new_pad),
5414         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
5415         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
5416         (gst_ogg_mux_collected), (gst_ogg_mux_clear_collectpads),
5417         (gst_ogg_mux_change_state):
5418           Fix leaking collectpads.
5419
5420 2005-11-16  Edward Hervey  <edward@fluendo.com>
5421
5422         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
5423         (gst_videorate_event), (gst_videorate_chain):
5424         Handle segment seeks
5425
5426 2005-11-16  Wim Taymans  <wim@fluendo.com>
5427
5428         * gst-libs/gst/audio/gstbaseaudiosink.c:
5429         (gst_base_audio_sink_provide_clock),
5430         (gst_base_audio_sink_change_state):
5431         Set ringbuffer to non-flushing when going to PAUSED, set to
5432         flushing again when going to READY.
5433
5434         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_init),
5435         (gst_ring_buffer_stop):
5436         Start in flushing mode by default.
5437         Don't set flushing in the _stop method, let the app call
5438         this explicitly.
5439
5440 2005-11-16  Julien MOUTTE  <julien@moutte.net>
5441
5442         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_center_rect):
5443         * gst-libs/gst/video/videosink.h: Add helper function needed
5444         for video sinks.
5445
5446 2005-11-16  Tim-Philipp Müller  <tim at centricular dot net>
5447
5448         * gst/videoscale/gstvideoscale.c:
5449         (gst_videoscale_handle_src_event):
5450           Don't leak reference to pad parent.
5451
5452 2005-11-16  Wim Taymans  <wim@fluendo.com>
5453
5454         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop):
5455         Set ringbuffer to flushing when stopping so that we don't
5456         block on wait_segment anymore and livelock.
5457
5458 2005-11-16  Wim Taymans  <wim@fluendo.com>
5459
5460         * examples/seeking/seek.c: (send_event), (do_seek),
5461         (loop_toggle_cb), (segment_done), (main):
5462         Added looping checkbox.
5463
5464 2005-11-16  Thomas Vander Stichele  <thomas at apestaart dot org>
5465
5466         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5467         (gst_ogg_demux_init):
5468         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
5469         (gst_vorbis_dec_init):
5470           revert unrefs, they don't pass make check
5471
5472 2005-11-15  Johan Dahlin  <johan@gnome.org>
5473
5474         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
5475         (gst_ogg_demux_init), (gst_ogg_demux_finalize):
5476         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_base_init),
5477         (gst_vorbis_dec_init):
5478         Fix pad template leaks. 
5479
5480 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
5481
5482         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state):
5483           Make state change function thread safe.
5484
5485 2005-11-15  Edward Hervey  <edward@fluendo.com>
5486
5487         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_receive_event),
5488         (gst_ogg_demux_class_init):
5489         Implement GstElement::send_event, so we can send seek events
5490         in GST_STATE_READY
5491
5492 2005-11-14  Julien MOUTTE  <julien@moutte.net>
5493
5494         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new):
5495         Discovered how to take away flickering while resizing the
5496         window. Please don't put that in ximagesink, refactoring in
5497         progress.
5498
5499 2005-11-14  Michael Smith <msmith@fluendo.com>
5500
5501         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_client_queue_data),
5502         (gst_multifdsink_render):
5503           Don't leak GDP headers when using GDP mode (i.e. tcpserversink).
5504
5505 2005-11-14  Tim-Philipp Müller  <tim at centricular dot net>
5506
5507         * gst/playback/gstplaybin.c: (gen_audio_element):
5508           Use autoaudiosink, it tends to be more widely available than
5509           autoaudiiosink.
5510           
5511 2005-11-14  Andy Wingo  <wingo@pobox.com>
5512
5513         * gst/playback/gstplaybin.c (gen_audio_element): Use autoaudiosink
5514         as well if it is available. Fixes #316442.
5515
5516 2005-11-14  Michael Smith <msmith@fluendo.com>
5517
5518         * ext/ogg/gstoggmux.c: (gst_ogg_mux_clear), (gst_ogg_mux_init),
5519         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
5520         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
5521         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
5522         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_collected),
5523         (gst_ogg_mux_clear_collectpads), (gst_ogg_mux_change_state):
5524         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_buffer_from_packet),
5525         (gst_vorbisenc_change_state):
5526           Fix a small memory leak in vorbisenc.
5527           Fix large memory leaks in oggmux, also fix lots of state change
5528           bugs in oggmux.
5529
5530 2005-11-14  Thomas Vander Stichele  <thomas at apestaart dot org>
5531
5532         * gst/videotestsrc/gstvideotestsrc.c:
5533         (gst_videotestsrc_class_init), (gst_videotestsrc_init),
5534         (gst_videotestsrc_src_fixate):
5535           move fixation to a fixate function
5536           remove negotiate function, basesrc's is good enough
5537           fixes a bug for check when using the element alone
5538
5539 2005-11-13  Edward Hervey  <edward@fluendo.com>
5540
5541         * examples/seeking/seek.c: (do_seek), (accurate_toggle_cb),
5542         (key_toggle_cb), (main):
5543         Added checkboxes for adding/removing the accurate and key_unit seek
5544         flags.
5545
5546 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
5547
5548         * configure.ac: back to HEAD
5549
5550 === release 0.9.5 ===
5551
5552 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
5553
5554         * configure.ac:
5555           releasing 0.9.5, "No No Kia"
5556
5557 2005-11-11  Edward Hervey  <edward@fluendo.com>
5558
5559         * examples/seeking/seek.c: (make_parselaunch_pipeline):
5560         Added parse-launch syntax seeking mode for the seeking example.
5561         This should help stress-test even more cases.
5562         Ex usage : ./seek 15 "filesrc location=uranus.avi ! decodebin ! xvimagesink"
5563
5564 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
5565
5566         * sys/xvimage/xvimagesink.c:
5567         (gst_xvimagesink_navigation_send_event):
5568           Check whether peer pad exists before sending navigation events
5569           to it.
5570
5571 2005-11-11  Michael Smith <msmith@fluendo.com>
5572
5573         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_setup),
5574         (gst_vorbisenc_buffer_from_packet):
5575         * ext/vorbis/vorbisenc.h:
5576           Set duration on encoded buffers. This allows oggmux's
5577           max_page_delay parameter to actually work.
5578
5579 2005-11-11  Tim-Philipp Müller  <tim at centricular dot net>
5580
5581         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5582         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
5583         (gst_ffmpegcsp_avpicture_fill):
5584         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5585         (gst_ffmpegcsp_get_unit_size), (gst_ffmpegcsp_transform):
5586           Make palettes work again (see #132341). Use our own macros
5587           for rounding up.
5588
5589 2005-11-10  Andy Wingo  <wingo@pobox.com>
5590
5591         * gst/playback/gstplaybasebin.c (prepare_output): Fix format
5592         string doober.
5593
5594 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5595
5596         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5597         (gst_ffmpegcsp_transform_caps):
5598           Prefer passthrough in transform_caps
5599
5600 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5601
5602         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
5603           check for ALSA errors properly, instead of relying on ALSA's
5604           error strings to serve to the user.
5605
5606 2005-11-10  Wim Taymans  <wim@fluendo.com>
5607
5608         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event), (gst_ogg_demux_init),
5609         (gst_ogg_demux_configure_segment), (gst_ogg_demux_perform_seek),
5610         (gst_ogg_demux_loop), (gst_ogg_demux_change_state):
5611         Modernise the seek code.
5612
5613 2005-11-10  Michael Smith <msmith@fluendo.com>
5614         
5615         * gst/playback/gstplaybasebin.c: (group_commit), (new_decoded_pad),
5616         (setup_substreams), (set_active_source):
5617           Unlock GROUP_LOCK in failure cases, so that we don't deadlock when
5618           trying to go to NULL if we failed to read a file.
5619
5620 2005-11-10  Wim Taymans  <wim@fluendo.com>
5621
5622         * gst/audiotestsrc/gstaudiotestsrc.c:
5623         (gst_audiotestsrc_class_init), (gst_audiotestsrc_get_times),
5624         (gst_audiotestsrc_create):
5625         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
5626         (gst_sinesrc_get_times), (gst_sinesrc_create):
5627         * gst/videotestsrc/gstvideotestsrc.c:
5628         (gst_videotestsrc_class_init), (gst_videotestsrc_get_times),
5629         (gst_videotestsrc_create):
5630         The base class can now sync for us.
5631
5632 2005-11-10  Thomas Vander Stichele  <thomas at apestaart dot org>
5633
5634         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_fixate): Check if the caps have
5635           a fourcc field. Fixes crash for gst-launch-0.9 v4lsrc
5636           name=source autoprobe=false autoprobe-fps=false copy-mode=1
5637           device=/dev/video0 ! ffmpegcolorspace ! "video/x-raw-yuv,
5638           format=(fourcc)I420" ! xvimagesink
5639
5640 2005-11-10  Tim-Philipp Müller  <tim at centricular dot net>
5641
5642         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
5643         (gst_sinesrc_get_query_types), (gst_sinesrc_src_query),
5644         (gst_sinesrc_newsegment):
5645           Send newsegment event in TIME format, set duration if
5646           num-buffers is set, fix duration querying.
5647
5648 2005-11-10  Michael Smith <msmith@fluendo.com>
5649
5650         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
5651         (gst_ogg_mux_push_buffer), (gst_ogg_mux_dequeue_page),
5652         (gst_ogg_mux_pad_queue_page), (gst_ogg_mux_queue_pads),
5653         (gst_ogg_mux_collected):
5654          Fix EOS handling, partially. Now forwarding an EOS event once we have
5655          EOS on all pads works correctly. However, we still don't properly set
5656          EOS on the actual ogg stream pages.
5657
5658 2005-11-09  Tim-Philipp Müller  <tim at centricular dot net>
5659
5660         * gst/playback/gstplaybin.c: (gst_play_bin_dispose):
5661           Set elements to NULL state before disposing of them.
5662
5663 2005-11-08  Sebastien Cote  <sebas642 at yahoo dot ca>
5664
5665         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
5666
5667         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5668         (gst_base_rtp_depayload_init),
5669         (gst_base_rtp_depayload_set_gst_timestamp):
5670         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5671           We need to send a newsegment event for each instance, not
5672           just for the first instance of this class (get rid of
5673           static variable in function). (#321011).
5674           
5675 2005-11-08  Michael Smith <msmith@fluendo.com>
5676
5677         * ext/ogg/gstoggmux.c: (gst_ogg_mux_request_new_pad),
5678         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_buffer),
5679         (gst_ogg_mux_dequeue_page), (gst_ogg_mux_pad_queue_page),
5680         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected):
5681           Forward port rewrite of muxing strategy to 0.9 version of oggmux.
5682           This makes us mux things correctly according to the ogg muxing
5683           rules. Still not handling EOS correctly right now, though.
5684
5685 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
5686
5687         * gst/audioconvert/gstaudioconvert.c:
5688           Fix typo in docs. 
5689
5690 2005-11-08  Tim-Philipp Müller  <tim at centricular dot net>
5691
5692         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
5693         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new):
5694           Initialise segment_stop to GST_CLOCK_TIME_NONE when
5695           creating a new chain; should fix live streaming. Also
5696           add more debug output and fix a typo.
5697
5698 2005-11-08  Brian Cameron  <brian dot cameron at sun dot com>
5699
5700         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
5701
5702         * gst/volume/gstvolume.c: (volume_set_caps):
5703           Fix compilation on Solaris with Forte. (#320923)
5704
5705 2005-11-08  Wim Taymans  <wim@fluendo.com>
5706
5707         * gst-libs/gst/audio/gstbaseaudiosink.c:
5708         (gst_base_audio_sink_render):
5709         No need to do a typecheck.
5710
5711 2005-11-07  Tim-Philipp Müller  <tim at centricular dot net>
5712
5713         * ext/alsa/gstalsa.h:
5714           We register a debug category, so let's use it.
5715
5716 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
5717
5718         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5719         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_wait):
5720         Fixed a small problem.
5721
5722 2005-11-04  Wim Taymans  <wim@fluendo.com>
5723
5724         * examples/seeking/Makefile.am:
5725         * examples/seeking/scrubby.c: (gst_element_factory_make_or_warn),
5726         (dynamic_link), (setup_dynamic_link), (make_wav_pipeline),
5727         (make_playerbin_pipeline), (format_value), (update_scale),
5728         (speed_cb), (seek_cb), (do_seek), (start_seek), (stop_seek),
5729         (play_cb), (pause_cb), (stop_cb), (print_message), (bus_message),
5730         (print_usage), (main):
5731         Added app for playback speed testing.
5732
5733         * examples/seeking/seek.c: (dynamic_link),
5734         (make_avi_msmpeg4v3_mp3_pipeline), (make_avi_pipeline),
5735         (make_mpeg_pipeline), (do_seek), (set_update_scale),
5736         (message_received), (main):
5737         Updated seek example.
5738
5739 2005-11-04  Zeeshan Ali  <zeenix@gmail.com>
5740
5741         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5742         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
5743         (gst_base_rtp_depayload_thread), (gst_base_rtp_depayload_wait),
5744         (gst_base_rtp_depayload_set_clock):
5745         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5746         Don't sleep on the bench (system clock) when you have a nice 
5747         comfortable bed (Gstreamer clock) to sleep on.
5748
5749 2005-11-03  Wim Taymans  <wim@fluendo.com>
5750
5751         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
5752         (gst_decode_bin_dispose), (free_dynamics), (remove_fakesink),
5753         (pad_blocked), (close_pad_link), (new_pad), (no_more_pads):
5754         Handle the case where a pad_block failed.
5755
5756 2005-11-02  Sebastien Cote  <sebas642@yahoo.ca> 
5757
5758         reviewed by: Zeeshan Ali  <zeenix@gmail.com>
5759
5760         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5761         (gst_base_rtp_depayload_add_to_queue),
5762         (gst_base_rtp_depayload_push),
5763         (gst_base_rtp_depayload_set_gst_timestamp),
5764         (gst_base_rtp_depayload_queue_release):
5765           Fixes some bugs in the depayloader's queuing/de-queueing code.
5766
5767 2005-10-31  Michael Smith <msmith@fluendo.com>
5768
5769         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
5770         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
5771         (gst_ogg_demux_collect_chain_info), (gst_ogg_print):
5772           Patch from Alessandro Decina <alessandro@nnva.org>.
5773           Make oggdemux only find the final time in a chain, not per-pad,
5774           since the per-pad information can be very expensive to locate, and
5775           it isn't used anywhere. This makes reading a file containing
5776           OggSkeleton reasonably fast.
5777           Also, make chain finding work when there are logical bitstreams that
5778           can't be decoded. Fixes #319110.
5779
5780 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
5781
5782         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5783         (gst_base_rtp_depayload_class_init), (gst_base_rtp_depayload_init),
5784         (gst_base_rtp_depayload_chain),
5785         (gst_base_rtp_depayload_add_to_queue),
5786         (gst_base_rtp_depayload_push),
5787         (gst_base_rtp_depayload_set_gst_timestamp),
5788         (gst_base_rtp_depayload_queue_release),
5789         (gst_base_rtp_depayload_start_thread),
5790         (gst_base_rtp_depayload_set_property),
5791         (gst_base_rtp_depayload_get_property):
5792         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5793         Some random fixes, to fullfill the desires of thomas.
5794
5795 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
5796
5797         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5798         (gst_base_rtp_depayload_add_to_queue),
5799         (gst_base_rtp_depayload_push):
5800         Fixed the queueing algorithm.
5801
5802 2005-10-31  Zeeshan Ali  <zeenix@gmail.com>
5803
5804         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5805         (gst_base_rtp_depayload_push):
5806         A small fix
5807
5808 2005-10-31  Wim Taymans  <wim@fluendo.com>
5809
5810         * gst-libs/gst/audio/gstringbuffer.h:
5811         Don't break ABI.
5812
5813         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5814         (gst_ffmpeg_caps_to_pixfmt):
5815         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
5816         (gst_ffmpegcsp_set_caps):
5817         Some more comments.
5818         Handle missing required caps fields better.
5819
5820 2005-10-31  Wim Taymans  <wim@fluendo.com>
5821
5822         * gst-libs/gst/audio/gstbaseaudiosink.c:
5823         (gst_base_audio_sink_event), (gst_base_audio_sink_get_offset),
5824         (gst_base_audio_sink_render):
5825         * gst-libs/gst/audio/gstringbuffer.c:
5826         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
5827         (gst_ring_buffer_set_flushing), (gst_ring_buffer_start),
5828         (gst_ring_buffer_pause_unlocked), (gst_ring_buffer_pause),
5829         (gst_ring_buffer_stop), (wait_segment), (gst_ring_buffer_commit),
5830         (gst_ring_buffer_read):
5831         * gst-libs/gst/audio/gstringbuffer.h:
5832         Add flushing mode to the ringbuffer so that it in all cases does
5833         not try to handle more audio. This makes sure it does not try to
5834         block anymore when flushing and fixes a livelock.
5835
5836 2005-10-29  Tim-Philipp Müller  <tim at centricular dot net>
5837
5838         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_query_convert),
5839         (gst_ogg_demux_chain_peer), (gst_ogg_demux_perform_seek),
5840         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain):
5841           Explicitly check for -1 values before doing a conversion
5842           and always map them to -1. (#315545)
5843
5844 2005-10-28  Thomas Vander Stichele  <thomas at apestaart dot org>
5845
5846         * gst/playback/gstplaybin.c: (gen_video_element):
5847           first try autovideosink, then xvimagesink, then error out
5848         * po/POTFILES.in:
5849           add translatable file
5850         * po/af.po:
5851         * po/az.po:
5852         * po/cs.po:
5853         * po/en_GB.po:
5854         * po/hu.po:
5855         * po/it.po:
5856         * po/nb.po:
5857         * po/nl.po:
5858         * po/or.po:
5859         * po/sq.po:
5860         * po/sr.po:
5861         * po/sv.po:
5862         * po/uk.po:
5863         * po/vi.po:
5864           update translations
5865
5866 2005-10-27  Philippe Khalaf <burger at speedy dot org> 
5867
5868         * gst-libs/gst/rtp/gstbasedepayload.c:
5869         * gst-libs/gst/rtp/gstbasedepayload.h:
5870           Minor cleanups
5871
5872 2005-10-27  Tim-Philipp Müller  <tim at centricular dot net>
5873
5874         * gst/playback/.cvsignore:
5875         * gst/playback/decodetest.c:
5876         * gst/playback/test3.c:
5877           Port these two tests as well.
5878
5879 2005-10-27  Wim Taymans  <wim@fluendo.com>
5880
5881         * ext/theora/theoradec.c: (theora_dec_src_query),
5882         (theora_dec_sink_event):
5883         * ext/theora/theoraenc.c: (theora_enc_sink_event),
5884         (theora_enc_change_state):
5885         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
5886         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
5887         Take proper locks when handling events.
5888
5889 2005-10-27  Wim Taymans  <wim@fluendo.com>
5890
5891         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_collected),
5892         (gst_adder_change_state):
5893         Fix timestamps and fix deadlock when stopping the collectpads.
5894
5895 2005-10-27  Zeeshan Ali  <zeenix@gmail.com>
5896
5897         * gst-libs/gst/rtp/gstrtpbuffer.h:
5898         Declaring the payload types as strings too so that they can be used
5899         in the padtemplate inialization.
5900
5901 2005-10-26  Andre Magalhaes  <andrunko@gmail.com>
5902
5903         reviewed by: Zeeshan Ali   <zeenix@gmail.com>
5904
5905         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5906         (gst_base_rtp_depayload_class_init):
5907         Fixes a small but nasty bug. The derived elements no longer segfaults
5908         on finalization.
5909
5910 2005-10-26  Michael Smith <msmith@fluendo.com>
5911
5912         * gst/audioconvert/audioconvert.c: (audio_convert_clean_context):
5913           When clearing an audioconvert context, set tmpbufsize to zero, so
5914           we'll allocate it again later if required.
5915           This fixes audioconvert re-negotiating formats, which previously
5916           segfaulted with a NULL destination buffer.
5917
5918 2005-10-26  Zeeshan Ali <zeenix@gmail.com>
5919
5920         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5921         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_push),
5922         (gst_base_rtp_depayload_set_gst_timestamp),
5923         (gst_base_rtp_depayload_queue_release):
5924         Fixed a smalll memleak.
5925
5926 2005-10-26  Zeeshan Ali  <zeenix@gmail.com>
5927         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5928         (gst_base_rtp_depayload_base_init), (gst_base_rtp_depayload_init),
5929         (gst_base_rtp_depayload_finalize),
5930         (gst_base_rtp_depayload_setcaps),
5931         (gst_base_rtp_depayload_add_to_queue),
5932         (gst_base_rtp_depayload_push),
5933         (gst_base_rtp_depayload_set_gst_timestamp),
5934         (gst_base_rtp_depayload_queue_release),
5935         (gst_base_rtp_depayload_thread),
5936         (gst_base_rtp_depayload_change_state):
5937         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5938         Changed the C++ comments to C comments
5939
5940 2005-10-26  Tim-Philipp Müller  <tim at centricular dot net>
5941
5942         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init):
5943         * gst/tcp/gsttcpclientsrc.h:
5944         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init):
5945         * gst/tcp/gsttcpserversrc.h:
5946           Remove unused 'curoffset' structure member.
5947
5948 2005-10-25  Zeeshan Ali  <zeenix@gmail.com>
5949
5950         * gst-libs/gst/rtp/gstbasertpdepayload.c:
5951         (gst_base_rtp_depayload_base_init),
5952         (gst_base_rtp_depayload_finalize):
5953         * gst-libs/gst/rtp/gstbasertpdepayload.h:
5954         * gst-libs/gst/rtp/gstbasertppayload.h:
5955           The pad-template on the sinkpad should be set by the derived classes.
5956           Also added some useful macros.
5957
5958 2005-10-24  Wim Taymans  <wim@fluendo.com>
5959
5960         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
5961         Correctly flush decoder samples even if we could not
5962         copy them to an output buffer. Fixes #319618.
5963
5964 2005-10-24  Julien MOUTTE  <julien@moutte.net>
5965
5966         * sys/ximage/ximagesink.c: (gst_ximagesink_setcaps):
5967         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_setcaps): Check
5968         the caps against our xcontext caps.
5969
5970 2005-10-24  Wim Taymans  <wim@fluendo.com>
5971
5972         * gst-libs/gst/audio/gstbaseaudiosink.c:
5973         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
5974         Remove g_print
5975         Use sync property from baseclass to disable sync.
5976
5977 2005-10-24  Wim Taymans  <wim@fluendo.com>
5978
5979         * gst-libs/gst/audio/gstbaseaudiosink.c:
5980         (gst_base_audio_sink_get_offset), (gst_base_audio_sink_render):
5981         Buffers with no timestamps get aligned with previous buffers or
5982         on underrun, played ASAP.
5983
5984 2005-10-24  Julien MOUTTE  <julien@moutte.net>
5985
5986         * gst-libs/gst/video/video.h:
5987         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
5988         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
5989         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): And
5990         here comes my change on caps for framerate and geometry range.
5991         We are now accepting 1 to MAXINT for width and height, and from
5992         0.0 to MAXDOUBLE for framerate. That allows duration less png frames
5993         to be blended correctly in videomixer.
5994
5995 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
5996
5997         * configure.ac:
5998           back to HEAD
5999
6000 === release 0.9.4 ===
6001
6002 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
6003
6004         * NEWS:
6005         * RELEASE:
6006         * configure.ac:
6007           releasing 0.9.4, "Velociraptor"
6008
6009 2005-10-23  Thomas Vander Stichele  <thomas at apestaart dot org>
6010
6011         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
6012         * po/POTFILES.in:
6013           STOPPED -> FAILED
6014
6015 2005-10-21  Wim Taymans  <wim@fluendo.com>
6016
6017         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
6018         (gst_decode_bin_dispose), (free_dynamics), (pad_unblocked),
6019         (pad_blocked), (close_pad_link), (new_pad):
6020         Don't try to remove elements twice.
6021
6022 2005-10-21  Wim Taymans  <wim@fluendo.com>
6023
6024         * ext/theora/theoradec.c: (theora_dec_src_query),
6025         (theora_dec_sink_event):
6026         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6027         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
6028         (vorbis_handle_data_packet):
6029         * ext/vorbis/vorbisdec.h:
6030         Fix old naming.
6031
6032         * gst-libs/gst/audio/gstbaseaudiosink.c:
6033         (gst_base_audio_sink_render):
6034         Don't try to sync on buffers without a timestamp.
6035
6036 2005-10-21  Wim Taymans  <wim@fluendo.com>
6037
6038         * ext/theora/theoradec.c: (theora_dec_src_query),
6039         (theora_dec_sink_event):
6040         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6041         (vorbis_dec_sink_event), (vorbis_handle_identification_packet),
6042         (vorbis_handle_data_packet):
6043         * ext/vorbis/vorbisdec.h:
6044         Fix old naming.
6045
6046 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
6047
6048         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types),
6049         (gst_vorbisenc_src_query):
6050           Implement position and duration queries.
6051
6052         * gst/playback/test3.c: (update_scale), (main):
6053           Fix for async state changes and print nicer output.
6054
6055 2005-10-20  Wim Taymans  <wim@fluendo.com>
6056
6057         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
6058         (dump_element_stats), (main):
6059         * gst/playback/test6.c: (main):
6060         Fix tests again
6061
6062 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
6063
6064         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
6065         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
6066           Don't use functions for position queries when handling
6067           duration queries.
6068
6069 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
6070
6071         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6072         (vorbis_handle_data_packet), (vorbis_dec_chain),
6073         (vorbis_dec_change_state):
6074         * ext/vorbis/vorbisdec.h:
6075           Vorbis streams can be embedded in other container formats
6076           than ogg, container formats where the demuxer might set 
6077           timestamps on encoded vorbis buffers instead of those silly 
6078           granulepos thingies. In short: make vorbisdec handle 
6079           timestamps on incoming buffers as well.
6080
6081 2005-10-20  Wim Taymans  <wim@fluendo.com>
6082
6083         * gst/playback/gstplaybasebin.c: (group_destroy),
6084         (gst_play_base_bin_change_state):
6085         Fix leak.
6086         Handle case where playbasebin is now ASYNC because
6087         decodebin is.
6088
6089 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
6090
6091         * gst/audioconvert/Makefile.am:
6092         * gst/audioconvert/bufferframesconvert.c:
6093         * gst/audioconvert/plugin.c: (plugin_init):
6094         * gst/audioconvert/plugin.h:
6095           And bye bye buffer-frames-convert
6096
6097 2005-10-19  Wim Taymans  <wim@fluendo.com>
6098
6099         * check/elements/audioconvert.c:
6100         * docs/libs/tmpl/gstaudio.sgml:
6101         * docs/libs/tmpl/gstcolorbalance.sgml:
6102         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6103         (vorbis_handle_identification_packet), (vorbis_handle_data_packet):
6104         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
6105         * gst-libs/gst/audio/audio.c: (gst_audio_structure_set_int):
6106         * gst-libs/gst/audio/audio.h:
6107         * gst/audioconvert/audioconvert.h:
6108         * gst/audioconvert/gstaudioconvert.c:
6109         (gst_audio_convert_parse_caps):
6110         * gst/volume/gstvolume.c:
6111         Bye bye buffer-frames.
6112
6113 2005-10-19  Wim Taymans  <wim@fluendo.com>
6114
6115         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
6116         (query_positions_elems), (query_positions_pads), (update_scale),
6117         (do_seek), (set_update_scale), (message_received), (main):
6118         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
6119         (gst_ogg_demux_perform_seek), (gst_ogg_demux_find_chains),
6120         (gst_ogg_demux_loop):
6121         * ext/ogg/gstogmparse.c: (gst_ogm_parse_sink_query):
6122         * ext/theora/theoradec.c: (theora_dec_src_query),
6123         (theora_dec_sink_event):
6124         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
6125         (vorbis_dec_sink_event), (vorbis_handle_data_packet):
6126         * gst/adder/gstadder.c: (gst_adder_query):
6127         * gst/audiotestsrc/gstaudiotestsrc.c: (gst_audiotestsrc_src_query):
6128         * gst/playback/test3.c: (update_scale):
6129         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
6130         (dump_element_stats), (main):
6131         * gst/playback/test6.c: (main):
6132         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
6133         Query API update.
6134
6135 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
6136
6137         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find),
6138         (xml_check_first_element), (xml_type_find), (smil_type_find),
6139         (plugin_init):
6140           Add typefinding for SMIL and for generic XML. Based on patch by
6141           Akos Maroy (#308663).
6142
6143 2005-10-18  Wim Taymans  <wim@fluendo.com>
6144
6145         * gst/playback/Makefile.am:
6146         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
6147         (gst_decode_bin_dispose), (dynamic_create), (dynamic_free),
6148         (free_dynamics), (pad_unblocked), (pad_blocked), (close_pad_link),
6149         (try_to_link_1), (new_pad), (no_more_pads), (type_found),
6150         (gst_decode_bin_change_state):
6151         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6152         (gst_play_bin_send_event_to_sink):
6153         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
6154         (dump_element_stats), (main):
6155         * gst/playback/test6.c: (main):
6156         Make playbin async, it'll commit state to paused when all streams
6157         are detected.
6158         Remove ugly hack.
6159         Added test6.c to show async behaviour.
6160
6161 2005-10-18  Wim Taymans  <wim@fluendo.com>
6162
6163         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer),
6164         (gst_ogg_demux_perform_seek), (gst_ogg_demux_loop):
6165         Fix for segment-start/stop API change.
6166
6167 2005-10-18  Wim Taymans  <wim@fluendo.com>
6168
6169         * check/Makefile.am:
6170         * check/clocks/selection.c: (GST_START_TEST), (volume_suite),
6171         (main):
6172         Add future test for clock selection.
6173
6174 2005-10-18  Wim Taymans  <wim@fluendo.com>
6175
6176         * ext/alsa/gstalsasink.c: (gst_alsasink_init),
6177         (gst_alsasink_close):
6178         Set handle to NULL.
6179
6180         * gst-libs/gst/audio/gstringbuffer.c:
6181         (gst_ring_buffer_open_device), (gst_ring_buffer_close_device),
6182         (gst_ring_buffer_acquire), (gst_ring_buffer_release),
6183         (gst_ring_buffer_start), (gst_ring_buffer_pause),
6184         (gst_ring_buffer_stop), (gst_ring_buffer_commit),
6185         (gst_ring_buffer_read):
6186         More debug info.
6187
6188 2005-10-17  Stefan Kost  <ensonic@users.sf.net>
6189
6190         * gst/audiotestsrc/Makefile.am:
6191         * gst/sine/Makefile.am:
6192         * gst/volume/Makefile.am:
6193           fix broken build of controllerized plugins
6194
6195 2005-10-17  Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
6196
6197         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
6198
6199         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
6200         (gst_riff_create_video_template_caps):
6201           Add support for Indeo-3 (IV32).
6202
6203 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
6204
6205         * configure.ac:
6206           rewrite
6207
6208 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
6209
6210         * gst-libs/gst/video/video.c: (gst_video_get_size):
6211         * gst/audiotestsrc/gstaudiotestsrc.c:
6212           doc updates
6213
6214 2005-10-17  Andy Wingo  <wingo@pobox.com>
6215
6216         * ext/ogg/gstoggmux.c (gst_ogg_mux_queue_pads): Fix bug introduced
6217         with the collectpads change.
6218         (gst_ogg_mux_send_headers): Elevate warning to a g_critical.
6219
6220         * gst/tcp/gstmultifdsink.c: Convert to use the boilerplate macro.
6221
6222         * gst/tcp/gsttcp.c (gst_tcp_socket_read): Comment update.
6223
6224         * ext/theora/theoraenc.c (theora_buffer_from_packet): Pass the
6225         alloc_buffer flow return to callers.
6226         (theora_enc_chain, theora_enc_chain): Adapt to buffer_from_packet
6227         change. Fix some memleaks in theoraenc.
6228
6229         * ext/ogg/gstoggmux.c (gst_ogg_mux_send_headers): Fix a segfault
6230         in strange circumstance.
6231
6232 2005-10-17  Julien MOUTTE  <julien@moutte.net>
6233
6234         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6235         (gst_ffmpegcsp_get_unit_size): We are asked to compute a buffer size
6236         from caps, let's use the caps...
6237
6238 2005-10-17  Thomas Vander Stichele  <thomas at apestaart dot org>
6239
6240         * configure.ac:
6241           put back AX_CREATE_STDINT_H, ffmpegcolorspace includes _stdint.h
6242
6243 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
6244
6245         * gst-libs/gst/interfaces/Makefile.am:
6246           fix silly typo
6247
6248 2005-10-16  Andy Wingo  <wingo@pobox.com>
6249
6250         * gst/playback/gstdecodebin.c
6251         (gst_element_set_state_like_a_crazy_man): New kraaaaaaazy
6252         function!
6253         (try_to_link_1): Increase kraziness level.
6254
6255 2005-10-16  Thomas Vander Stichele  <thomas at apestaart dot org>
6256
6257         * configure.ac:
6258           restructure like the core one
6259         * gst-libs/gst/audio/Makefile.am:
6260         * gst-libs/gst/interfaces/Makefile.am:
6261         * gst-libs/gst/net/Makefile.am:
6262         * gst-libs/gst/riff/Makefile.am:
6263         * gst-libs/gst/rtp/Makefile.am:
6264         * gst-libs/gst/tag/Makefile.am:
6265         * gst-libs/gst/video/Makefile.am:
6266           use correct linker flags, now the libs are properly versioned
6267         * check/elements/audioconvert.c: (verify_convert):
6268         * ext/alsa/gstalsaplugin.c:
6269         * ext/cdparanoia/gstcdparanoia.c:
6270         * ext/gnomevfs/gstgnomevfs.c:
6271         * ext/libvisual/visual.c:
6272         * ext/ogg/gstogg.c:
6273         * ext/ogg/gstoggparse.c: (gst_ogg_parse_chain):
6274         * ext/theora/theora.c:
6275         * ext/vorbis/vorbis.c:
6276         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
6277         * gst-libs/gst/tag/gsttagediting.c:
6278         * gst-libs/gst/video/video.c:
6279         * gst/adder/gstadder.c:
6280         * gst/audioconvert/plugin.c:
6281         * gst/audiorate/gstaudiorate.c:
6282         * gst/audioresample/gstaudioresample.c:
6283         * gst/audioresample/resample_ref.c: (resample_scale_ref):
6284         * gst/audioscale/gstaudioscale.c:
6285         * gst/audioscale/resample.c:
6286         * gst/audiotestsrc/gstaudiotestsrc.c:
6287         * gst/ffmpegcolorspace/gstffmpeg.c:
6288         * gst/playback/gstdecodebin.c: (close_pad_link):
6289         * gst/playback/gstplaybin.c: (gen_video_element),
6290         (gen_audio_element):
6291         * gst/sine/gstsinesrc.c:
6292         * gst/subparse/gstsubparse.c:
6293         * gst/tags/gsttagediting.c:
6294         * gst/tcp/gsttcpplugin.c:
6295         * gst/typefind/gsttypefindfunctions.c:
6296         * gst/videorate/gstvideorate.c:
6297         * gst/videoscale/gstvideoscale.c:
6298         * gst/videotestsrc/gstvideotestsrc.c:
6299         * gst/volume/gstvolume.c:
6300         * sys/v4l/gstv4l.c:
6301         * sys/ximage/ximage.c:
6302         * sys/xvimage/xvimagesink.c:
6303           fix up defines
6304
6305 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
6306
6307         * ext/vorbis/vorbisenc.c:
6308         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
6309         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_add),
6310         (gst_tag_to_vorbis_comments):
6311           Fix handling of GST_TAG_DATE, which is now of GST_TYPE_DATE.
6312
6313 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
6314
6315         * examples/stats/mp2ogg.c:
6316         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
6317           typo fixes
6318
6319 2005-10-13  Michael Smith <msmith@fluendo.com>
6320
6321         * ext/ogg/gstoggmux.c:
6322           Use magic glib macros to define constants as 64 bit, to ensure
6323           appropriate vararg passing.
6324
6325 2005-10-13  Michael Smith <msmith@fluendo.com>
6326
6327         * ext/ogg/gstoggmux.c:
6328         * gst/audioconvert/audioconvert.c: (float):
6329           Don't use LL suffix, as it's not portable, and neither of these
6330           uses required it anyway.
6331
6332 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
6333
6334         * examples/indexing/indexmpeg.c: (main):
6335         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get),
6336         (cdparanoia_open), (cdparanoia_close), (cdparanoia_event),
6337         (cdparanoia_convert), (cdparanoia_query):
6338         * ext/cdparanoia/gstcdparanoia.h:
6339         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
6340         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file),
6341         (gst_gnomevfssink_chain), (gst_gnomevfssink_change_state):
6342         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init):
6343         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init):
6344         * gst/playback/gststreamselector.c: (gst_stream_selector_init):
6345         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
6346         (gst_multifdsink_render), (gst_multifdsink_start),
6347         (gst_multifdsink_stop):
6348         * gst/tcp/gstmultifdsink.h:
6349         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init),
6350         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
6351         (gst_tcpclientsink_stop):
6352         * gst/tcp/gsttcpclientsink.h:
6353         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
6354         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_create),
6355         (gst_tcpclientsrc_start), (gst_tcpclientsrc_stop):
6356         * gst/tcp/gsttcpclientsrc.h:
6357         * gst/tcp/gsttcpserversink.h:
6358         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init),
6359         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
6360         (gst_tcpserversrc_stop):
6361         * gst/tcp/gsttcpserversrc.h:
6362         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
6363         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
6364         * sys/ximage/ximagesink.c: (gst_ximagesink_init):
6365           renamed GST_FLAGS macros to GST_OBJECT_FLAGS
6366           moved bitshift from macro to enum definition
6367
6368 2005-10-12  Wim Taymans  <wim@fluendo.com>
6369
6370         * examples/seeking/Makefile.am:
6371         Oops.
6372
6373 2005-10-12  Wim Taymans  <wim@fluendo.com>
6374
6375         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
6376         (gst_ring_buffer_read), (gst_ring_buffer_clear):
6377         Don't assert on normal stuff.
6378
6379         * gst/playback/gstplaybin.c: (do_playbin_seek):
6380         API fix.
6381
6382 2005-10-12  Wim Taymans  <wim@fluendo.com>
6383
6384         * check/pipelines/simple_launch_lines.c: (run_pipeline):
6385         * examples/seeking/Makefile.am:
6386         * examples/seeking/cdplayer.c: (play_cb), (pause_cb), (stop_cb):
6387         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
6388         (do_seek), (set_update_scale), (message_received), (main):
6389         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
6390         (gst_ring_buffer_read), (gst_ring_buffer_clear):
6391         Update for _get_state() API change.
6392
6393 2005-10-11  Wim Taymans  <wim@fluendo.com>
6394
6395         * gst-libs/gst/audio/gstbaseaudiosink.c:
6396         (gst_base_audio_sink_render):
6397         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6398         (gst_base_audio_src_create):
6399         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit),
6400         (gst_ring_buffer_read):
6401         Cleanups.
6402         Commit and read from ringbuffer in samples rather than bytes.
6403
6404 2005-10-11  Wim Taymans  <wim@fluendo.com>
6405
6406         * gst-libs/gst/audio/gstbaseaudiosink.c:
6407         (gst_base_audio_sink_render):
6408         Respect segment rate and accum when scheduling samples.
6409
6410 2005-10-11  Julien MOUTTE  <julien@moutte.net>
6411
6412         * ext/ogg/gstoggmux.c: (gst_ogg_mux_queue_pads),
6413         (gst_ogg_mux_collected): Quick hack to fix build. We need to handle
6414         EOS correctly, that needs more work.
6415
6416 2005-10-11  Wim Taymans  <wim@fluendo.com>
6417
6418         * check/generic/states.c: (GST_START_TEST):
6419         remove old property.
6420
6421         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
6422         (gst_ogg_demux_perform_seek):
6423         * ext/theora/theoradec.c: (theora_dec_sink_event):
6424         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
6425         (vorbis_handle_data_packet):
6426         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6427         (gst_base_rtp_depayload_set_gst_timestamp):
6428         * gst/videorate/gstvideorate.c: (gst_videorate_event):
6429         Update for newsegment API change.
6430
6431 2005-10-11  Michael Smith <msmith@fluendo.com>
6432
6433         * gst/playback/gstplaybin.c: (gst_play_bin_send_event_to_sink),
6434         (do_playbin_seek), (gst_play_bin_send_event):
6435           Override send_event differently, so that we can takes bits of
6436           functionality from GstPipeline (special handling for seeks,
6437           including pausing/resuming, and resetting stream time) and still get
6438           the appropriate behaviour of only forwarding event to a single sink,
6439           rather than all of them.
6440           Unfortunately requires a lot of code duplication, but the
6441           alternatives are equally ugly in the end.
6442
6443 2005-10-11  Thomas Vander Stichele  <thomas at apestaart dot org>
6444
6445         * check/elements/audioconvert.c: (setup_audioconvert),
6446         (cleanup_audioconvert), (get_int_caps), (verify_convert),
6447         (GST_START_TEST), (audioconvert_suite):
6448           clean up tests a little, fix some leaks.
6449
6450 2005-10-10  Wim Taymans  <wim@fluendo.com>
6451
6452         * ext/alsa/gstalsasink.c:
6453         Also allow unsigned int.
6454
6455         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6456         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
6457         Small cleanup
6458
6459 2005-10-10  Wim Taymans  <wim@fluendo.com>
6460
6461         * check/pipelines/simple_launch_lines.c: (run_pipeline):
6462         Small update, use API as stated in design docs.
6463
6464         * examples/seeking/seek.c: (make_avi_msmpeg4v3_mp3_pipeline),
6465         (update_scale), (do_seek), (seek_cb), (set_update_scale),
6466         (start_seek), (stop_seek), (play_cb), (pause_cb), (stop_cb),
6467         (message_received), (main):
6468         Updated seek example for GOption. Some usability improvements.
6469
6470 2005-10-10  Wim Taymans  <wim@fluendo.com>
6471
6472         * gst/audioconvert/audioconvert.h:
6473         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
6474         (gst_channel_mix_setup_matrix), (gst_channel_mix_mix):
6475         Alloc temp storage somewhere else where we can do it more
6476         portable.
6477
6478 2005-10-10  Wim Taymans  <wim@fluendo.com>
6479
6480         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_create),
6481         (gst_tcpserversrc_start):
6482         Don't block in accept while doing the state change, move
6483         to poll and make cancellable.
6484
6485 2005-10-09  Philippe Khalaf <burger@speedy.org>
6486
6487         * gst-libs/gst/rtp/rtpbasedepayload.c:
6488         Set timestamp and add queue delay to timestamp
6489         * gst-libs/gst/rtp/rtpbuffer.h:
6490         Set correct payload type for h263
6491
6492 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
6493
6494         * gst/audiotestsrc/gstaudiotestsrc.c:
6495         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_class_init),
6496         (gst_audiotestsrc_init), (gst_audiotestsrc_create_sine),
6497         (gst_audiotestsrc_create_square), (gst_audiotestsrc_create_saw),
6498         (gst_audiotestsrc_create_triangle),
6499         (gst_audiotestsrc_create_silence),
6500         (gst_audiotestsrc_create_white_noise),
6501         (gst_audiotestsrc_init_pink_noise),
6502         (gst_audiotestsrc_generate_pink_noise_value),
6503         (gst_audiotestsrc_create_pink_noise),
6504         (gst_audiotestsrc_change_wave):
6505         * gst/audiotestsrc/gstaudiotestsrc.h:
6506           fixed typo, added pink noise
6507
6508 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
6509
6510         * gst/typefind/gsttypefindfunctions.c: (wavpack_type_find),
6511         (plugin_init):
6512           Add wavpack and spc typefind functions from 0.8 branch.
6513
6514 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
6515
6516         * gst/typefind/gsttypefindfunctions.c: (tar_type_find),
6517         (ar_type_find), (msdos_type_find), (plugin_init):
6518           Add typefind functions for tar archives, ar archives,
6519           RAR archives, and msdos-executables (dlls, exe, etc.).
6520           Some of those would be wrongly identified as mpeg
6521           streams of some sort before (#315550).
6522
6523 2005-10-09  Stefan Kost  <ensonic@users.sf.net>
6524
6525         * configure.ac:
6526         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6527         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6528         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type):
6529         * gst/audiotestsrc/Makefile.am:
6530         * gst/audiotestsrc/gstaudiotestsrc.c:
6531         (gst_audiostestsrc_wave_get_type), (gst_audiotestsrc_base_init),
6532         (gst_audiotestsrc_class_init), (gst_audiotestsrc_init),
6533         (gst_audiotestsrc_src_fixate), (gst_audiotestsrc_setcaps),
6534         (gst_audiotestsrc_get_query_types), (gst_audiotestsrc_src_query),
6535         (gst_audiotestsrc_wait), (gst_audiotestsrc_unlock),
6536         (gst_audiotestsrc_create_sine), (gst_audiotestsrc_create_square),
6537         (gst_audiotestsrc_create_saw), (gst_audiotestsrc_create_triangle),
6538         (gst_audiotestsrc_create_silence),
6539         (gst_audiotestsrc_create_white_noise),
6540         (gst_audiotestsrc_change_wave), (gst_audiotestsrc_create),
6541         (gst_audiotestsrc_set_property), (gst_audiotestsrc_get_property),
6542         (gst_audiotestsrc_start), (plugin_init):
6543         * gst/audiotestsrc/gstaudiotestsrc.h:
6544           add new plugin and element
6545         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init):
6546           use gobject_class
6547
6548 2005-10-09  Tim-Philipp Müller  <tim at centricular dot net>
6549
6550         * gst/adder/gstadder.c: (gst_adder_query), (gst_adder_class_init),
6551         (gst_adder_init), (gst_adder_request_new_pad),
6552         (gst_adder_change_state):
6553           Add query function to source pad, so adder reports the correct
6554           time/sample position when queried (#315457); fix state change
6555           function; use GST_DEBUG_FUNCPTR() for pad functions.
6556
6557 2005-10-08  Thomas Vander Stichele  <thomas at apestaart dot org>
6558
6559         * gst/typefind/gsttypefindfunctions.c: (utf8_type_find):
6560           Fix leaks in typefind registration
6561           Clean up the gratuitous commenting and whitespacing a little
6562
6563 2005-10-08  Wim Taymans  <wim@fluendo.com>
6564
6565         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_stop):
6566         Only actually wait for the thread to be stopped if it's 
6567         running.
6568
6569 2005-10-08  Wim Taymans  <wim@fluendo.com>
6570
6571         * gst-libs/gst/audio/gstbaseaudiosink.c:
6572         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
6573         If we receive EOS we can start playback of what we had.
6574
6575 2005-10-08  Wim Taymans  <wim@fluendo.com>
6576
6577         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
6578         (gst_multifdsink_finalize), (multifdsink_hash_remove),
6579         (gst_multifdsink_stop):
6580         Fix crasher when going to NULL multiple times.
6581
6582 2005-10-06  Wim Taymans  <wim@fluendo.com>
6583
6584         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event),
6585         (gst_base_audio_src_create), (gst_base_audio_src_change_state):
6586         * gst-libs/gst/audio/gstbaseaudiosrc.h:
6587         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_read):
6588         patch from Edgard Lima <edgard.lima@indt.org.br>
6589         Fixed gstbaseaudiosrc adding ring buffer sync to it.
6590
6591 2005-10-06  Wim Taymans  <wim@fluendo.com>
6592
6593         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_loop):
6594         Report the FLOW_RETURN as string in the error message.
6595
6596         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_clear_all):
6597         Don't assert when clearing an unnegotiated buffer.
6598
6599 2005-10-04  Michael Smith <msmith@fluendo.com>
6600
6601         * gst/playback/gstplaybasebin.c: (group_destroy),
6602         (gen_preroll_element), (remove_groups), (setup_source):
6603         * gst/playback/gstplaybin.c: (remove_sinks), (add_sink),
6604         (setup_sinks), (gst_play_bin_send_event),
6605         (gst_play_bin_change_state):
6606           Set state to NULL before removing from bin. Fix refcounting.
6607
6608 2005-10-04  Michael Smith <msmith@fluendo.com>
6609
6610         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
6611           Correct refcounting in send_event() function. Previously was wrong
6612           if the first sink was unable to handle the event.
6613
6614 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6615
6616         * configure.ac:
6617           back to development
6618
6619 === release 0.9.3 ===
6620
6621 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
6622
6623         * configure.ac:
6624           Releasing 0.9.3, "De Facto"
6625
6626 2005-10-03  Andy Wingo  <wingo@pobox.com>
6627
6628         * gst/playback/gstdecodebin.c (try_to_link_1)
6629         (remove_element_chain): set element to NULL before removing it.
6630
6631 2005-10-02  Johan Dahlin  <johan@gnome.org>
6632
6633         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_uri_get_protocols): 
6634         protect gst_gnomevfs_get_supported_uris by a mutex, to make it
6635         MT safe.
6636
6637 2005-10-02  Andy Wingo  <wingo@pobox.com>
6638
6639         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_clear) 
6640         (gst_ring_buffer_prepare_read): 
6641         * gst-libs/gst/audio/gstaudiosink.c (audioringbuffer_thread_func):
6642         Demote to LOG.
6643
6644 2005-09-29  Wim Taymans  <wim@fluendo.com>
6645
6646         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain_peer):
6647         * ext/theora/theoradec.c: (theora_handle_data_packet):
6648         * ext/vorbis/vorbisdec.c: (vorbis_handle_data_packet):
6649         Propagate error codes from alloc_buffer too.
6650
6651 2005-09-29  Wim Taymans  <wim@fluendo.com>
6652
6653         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
6654         We use fixed caps.
6655
6656         * gst/playback/Makefile.am:
6657         * gst/playback/test5.c: (new_pad), (no_more_pads), (start_finding),
6658         (dump_element_stats), (main):
6659         Added example stream introspection code.
6660
6661 2005-09-28  Stefan Kost  <ensonic@users.sf.net>
6662
6663         * gst/adder/gstadder.c: (gst_adder_collected):
6664           fix adder for float elements
6665
6666 2005-09-28  Wim Taymans  <wim@fluendo.com>
6667
6668         * gst-libs/gst/audio/gstbaseaudiosink.c:
6669         (gst_base_audio_sink_class_init),
6670         (gst_base_audio_sink_provide_clock), (gst_base_audio_sink_render):
6671         * gst-libs/gst/audio/gstbaseaudiosrc.c:
6672         (gst_base_audio_src_class_init),
6673         (gst_base_audio_src_provide_clock):
6674         get_clock -> provide_clock
6675
6676 2005-09-28  Andy Wingo  <wingo@pobox.com>
6677
6678         * gst/videotestsrc/gstvideotestsrc.c: Implement live source mode
6679         and unlocking.
6680
6681         * gst/sine/gstsinesrc.c (gst_sinesrc_unlock): Actually implement
6682         unlocking.
6683
6684         * gst/tcp/gsttcpclientsink.c (gst_tcpclientsink_base_init):
6685         Actually add the pad template.
6686         (gst_tcpclientsink_get_type): We're a base sink. Woot, works.
6687
6688         * gst/tcp/gsttcpserversrc.c: Go ahead and fix up serversrc while
6689         I'm at it...
6690
6691         * gst/tcp/gsttcpclientsrc.c: Make interruptable -- code stolen
6692         from fdsrc. Get caps in create() instead of start() so it can be
6693         interrupted. Interruption somewhat untested.
6694
6695         * gst/tcp/gsttcp.c (gst_tcp_read_buffer, gst_tcp_socket_read):
6696         Proper EOS handling.
6697
6698 2005-09-27  Andy Wingo  <wingo@pobox.com>
6699
6700         * gst/tcp/gsttcpclientsrc.c: Cleaned up.
6701
6702         * gst/tcp/gsttcpserversrc.c: Cleaned up.
6703
6704         * gst/tcp/gsttcpclientsrc.c: Updated for new gsttcp API.
6705
6706         * gst/tcp/gsttcp.h: 
6707         * gst/tcp/gsttcp.c (gst_tcp_read_buffer): New function, factored
6708         out of tcpclientsrc.c. Cancellable.
6709         (gst_tcp_socket_read): Made private, cancellable, with better
6710         diagnostics. Also the FIONREAD ioctl takes a int*, not a size_t*.
6711         (gst_tcp_gdp_read_buffer): Made cancellable, actually returns the
6712         whole buffer, and better diagnostics.
6713         (gst_tcp_gdp_read_caps): Same.
6714
6715         * gst/sine/gstsinesrc.c (gst_sinesrc_wait): Add the base time.
6716
6717 2005-09-26  Andy Wingo  <wingo@pobox.com>
6718
6719         * gst/sine/gstsinesrc.h:
6720         * gst/sine/gstsinesrc.c: Refactor, remove the table lookup code,
6721         change the 'sync' property to 'is-live' and implement it halfway,
6722         update for controller api change.
6723
6724         * gst/volume/gstvolume.c (volume_transform_ip): Update for
6725         controller api change.
6726
6727 2005-09-24  Wim Taymans  <wim@fluendo.com>
6728
6729         * ext/alsa/gstalsasink.c: (gst_alsasink_reset):
6730         * gst-libs/gst/audio/gstaudiosink.c:
6731         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
6732         (gst_audioringbuffer_stop):
6733         * gst-libs/gst/audio/gstbaseaudiosink.c:
6734         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
6735         (gst_base_audio_sink_change_state):
6736         * gst-libs/gst/audio/gstbaseaudiosink.h:
6737         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_stop),
6738         (gst_ring_buffer_set_sample), (gst_ring_buffer_clear_all),
6739         (gst_ring_buffer_commit), (gst_ring_buffer_read):
6740         * gst-libs/gst/audio/gstringbuffer.h:
6741         Fix sync again. Moved sample alignment to basesink.
6742
6743 2005-09-23  Thomas Vander Stichele  <thomas at apestaart dot org>
6744
6745         * docs/plugins/Makefile.am:
6746         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
6747         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6748         * gst/volume/gstvolume.c:
6749           add/fix docs
6750         * gst-libs/gst/audio/audio.c: (gst_audio_frame_byte_size):
6751         * gst-libs/gst/audio/audio.h:
6752           add conversion macros for frames <-> clocktime
6753
6754 2005-09-23  David Schleef  <ds@schleef.org>
6755
6756         * gst/audioresample/Makefile.am:
6757         * gst/audioresample/debug.h:
6758         * gst/audioresample/gstaudioresample.c:
6759         * gst/audioresample/resample.c: Convert to using gst debugging
6760
6761 2005-09-22  Wim Taymans  <wim@fluendo.com>
6762
6763         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
6764         (gst_play_bin_send_event):
6765         Only seek on one sink, the first one that succeeds.
6766
6767 2005-09-22  Michael Smith <msmith@fluendo.com>
6768
6769         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_clear),
6770         (gst_vorbisenc_sink_event), (gst_vorbisenc_change_state):
6771         Don't flush encoder state unless we have an initialised encoder.
6772         Clear out encoder state on PAUSED_TO_READY.
6773
6774 2005-09-22  Wim Taymans  <wim@fluendo.com>
6775
6776         * gst-libs/gst/rtp/gstbasertppayload.c:
6777         (gst_basertppayload_class_init), (gst_basertppayload_init),
6778         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
6779         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
6780         (gst_basertppayload_is_filled), (gst_basertppayload_push),
6781         (gst_basertppayload_set_property),
6782         (gst_basertppayload_get_property),
6783         (gst_basertppayload_change_state):
6784         * gst-libs/gst/rtp/gstbasertppayload.h:
6785         Added max-ptime to control amount of data in the rtp packets.
6786
6787 2005-09-21  Andy Wingo  <wingo@pobox.com>
6788
6789         * gst/playback/gstplaybasebin.c: Attempt to fix up buffer probe
6790         thingies.
6791
6792         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Dispose
6793         can be called multiple times, dogs.
6794
6795 2005-09-21  Wim Taymans  <wim@fluendo.com>
6796
6797         * gst-libs/gst/rtp/gstbasertppayload.c:
6798         (gst_basertppayload_class_init), (gst_basertppayload_init),
6799         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
6800         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
6801         (gst_basertppayload_push), (gst_basertppayload_get_property),
6802         (gst_basertppayload_change_state):
6803         Allow 0 ssrc too.
6804
6805 2005-09-21  Stefan Kost  <ensonic@users.sf.net>
6806
6807         * docs/libs/compiling.sgml:
6808           fixing typos
6809
6810 2005-09-20  Wim Taymans  <wim@fluendo.com>
6811
6812         * gst-libs/gst/rtp/gstbasertppayload.c:
6813         (gst_basertppayload_class_init), (gst_basertppayload_init),
6814         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
6815         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
6816         (gst_basertppayload_push), (gst_basertppayload_set_property),
6817         (gst_basertppayload_get_property),
6818         (gst_basertppayload_change_state):
6819         * gst-libs/gst/rtp/gstbasertppayload.h:
6820         Added property to configure sequence number offsets.
6821
6822 2005-09-20  Wim Taymans  <wim@fluendo.com>
6823
6824         * gst-libs/gst/rtp/gstbasertppayload.c:
6825         (gst_basertppayload_class_init), (gst_basertppayload_init),
6826         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
6827         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
6828         (gst_basertppayload_push), (gst_basertppayload_set_property),
6829         (gst_basertppayload_get_property),
6830         (gst_basertppayload_change_state):
6831         * gst-libs/gst/rtp/gstbasertppayload.h:
6832         Make timestamp offset configurable.
6833
6834 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
6835
6836         * check/pipelines/simple_launch_lines.c: (run_pipeline):
6837           fix wrong pop/unref
6838
6839 2005-09-19  Torsten Schoenfeld  <kaffeetisch at gmx dot net>
6840
6841         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
6842
6843         * gst-libs/gst/interfaces/propertyprobe.c:
6844         (gst_property_probe_probe_property_name),
6845         (gst_property_probe_needs_probe_name),
6846         (gst_property_probe_get_values_name),
6847         (gst_property_probe_probe_and_get_values_name):
6848           Fix wrong macro usage; it's G_OBJECT_GET_CLASS(obj) or
6849           G_OBJECT_CLASS(klass), not G_OBJECT_CLASS(obj). (#316571)
6850
6851 2005-09-19  Thomas Vander Stichele  <thomas at apestaart dot org>
6852
6853         * check/Makefile.am:
6854           have some tests be disabled for valgrinding
6855         * check/elements/vorbisdec.c: (cleanup_vorbisdec),
6856         (GST_START_TEST):
6857         * ext/vorbis/vorbisdec.c: (vorbisdec_finalize):
6858           Fix A Leak.  Chain To Parent Finalize.
6859
6860 2005-09-19  Wim Taymans  <wim@fluendo.com>
6861
6862         * examples/seeking/seek.c: (make_wav_pipeline), (main):
6863         Fixed wav pipeline.
6864
6865 2005-09-19  Wim Taymans  <wim@fluendo.com>
6866
6867         * gst-libs/gst/rtp/gstbasertppayload.c:
6868         (gst_basertppayload_class_init), (gst_basertppayload_init),
6869         (gst_basertppayload_setcaps), (gst_basertppayload_chain),
6870         (gst_basertppayload_set_options), (gst_basertppayload_set_outcaps),
6871         (gst_basertppayload_push), (gst_basertppayload_get_property),
6872         (gst_basertppayload_change_state):
6873         Posting ERROR and WARNING messages is good.
6874
6875 2005-09-19  Wim Taymans  <wim@fluendo.com>
6876
6877         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6878         (gst_base_rtp_depayload_add_to_queue),
6879         (gst_base_rtp_depayload_push),
6880         (gst_base_rtp_depayload_set_gst_timestamp),
6881         (gst_base_rtp_depayload_queue_release):
6882         This one was not supposed to go in.
6883
6884 2005-09-19  Wim Taymans  <wim@fluendo.com>
6885
6886         * check/pipelines/simple_launch_lines.c: (run_pipeline):
6887         Fix for bus API.
6888
6889         * gst-libs/gst/rtp/gstbasertpdepayload.c:
6890         (gst_base_rtp_depayload_chain),
6891         (gst_base_rtp_depayload_add_to_queue),
6892         (gst_base_rtp_depayload_push),
6893         (gst_base_rtp_depayload_set_gst_timestamp),
6894         (gst_base_rtp_depayload_queue_release):
6895         Some cleanups.
6896
6897         * gst-libs/gst/rtp/gstbasertppayload.c:
6898         (gst_basertppayload_class_init), (gst_basertppayload_init),
6899         (gst_basertppayload_setcaps), (gst_basertppayload_set_options),
6900         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
6901         (gst_basertppayload_get_property),
6902         (gst_basertppayload_change_state):
6903         Added debugging category.
6904
6905 2005-09-18  David Schleef  <ds@schleef.org>
6906
6907         * gst/playback/gstdecodebin.c: free plugin list correctly
6908         * gst/playback/gstplaybin.c: emit warning if autovideosink
6909           and autoaudiosink can't be found (instead of segfaulting)
6910
6911 2005-09-17  Thomas Vander Stichele  <thomas at apestaart dot org>
6912
6913         * check/elements/audioconvert.c: (GST_START_TEST):
6914           try out 24 bit conversion
6915
6916 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6917
6918         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
6919         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
6920         (gst_vorbisenc_output_buffers), (gst_vorbisenc_change_state):
6921         * ext/vorbis/vorbisenc.h:
6922           Fix EOS handling.  Still needs a fix in the ogg muxer to
6923           mark the last page as eos.
6924
6925 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6926
6927         * common/gtk-doc-plugins.mak:
6928         * docs/plugins/Makefile.am:
6929         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6930         * gst/ffmpegcolorspace/Makefile.am:
6931         * gst/ffmpegcolorspace/avcodec.h:
6932         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
6933         * gst/tcp/gstmultifdsink.c:
6934           fix up ffmpegcolorspace docs; extract header
6935
6936 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6937
6938         * common/gtk-doc-plugins.mak:
6939         * docs/plugins/Makefile.am:
6940         * docs/plugins/gst-plugins-base-plugins-sections.txt:
6941         * ext/theora/Makefile.am:
6942         * ext/theora/gsttheoraenc.h:
6943         * ext/theora/theoraenc.c:
6944         * ext/vorbis/vorbisenc.c:
6945           pick up signals and args for vorbis; add some docs for vorbis
6946
6947 2005-09-15  Thomas Vander Stichele  <thomas at apestaart dot org>
6948
6949         * common/gstdoc-scangobj:
6950         * common/gtk-doc-plugins.mak:
6951         * docs/libs/Makefile.am:
6952         * docs/plugins/gst-plugins-base-plugins.args:
6953         * docs/plugins/gst-plugins-base-plugins.hierarchy:
6954         * docs/plugins/gst-plugins-base-plugins.interfaces:
6955         * docs/plugins/gst-plugins-base-plugins.prerequisites:
6956         * docs/plugins/gst-plugins-base-plugins.signals:
6957           only scanobj stuff from our source module.  Not sure yet
6958           if that's correct, given the hierarchy stuff :)
6959
6960 2005-09-15  Wim Taymans  <wim@fluendo.com>
6961
6962         * gst/audioconvert/gstaudioconvert.c:
6963         And enable 24 bits mode as well..
6964
6965 2005-09-15  Wim Taymans  <wim@fluendo.com>
6966
6967         * gst-libs/gst/rtp/Makefile.am:
6968         * gst-libs/gst/rtp/gstbasertppayload.c:
6969         (gst_basertppayload_get_type), (gst_basertppayload_base_init),
6970         (gst_basertppayload_class_init), (gst_basertppayload_init),
6971         (gst_basertppayload_finalize), (gst_basertppayload_setcaps),
6972         (gst_basertppayload_chain), (gst_basertppayload_set_options),
6973         (gst_basertppayload_set_outcaps), (gst_basertppayload_push),
6974         (gst_basertppayload_set_property),
6975         (gst_basertppayload_get_property),
6976         (gst_basertppayload_change_state):
6977         * gst-libs/gst/rtp/gstbasertppayload.h:
6978         Added rtp payloader base class.
6979
6980 2005-09-15  Andy Wingo  <wingo@pobox.com>
6981
6982         * configure.ac (plugindir): Remove the EOL matcher from the
6983         regexp, as it causes me problems. Libtool? Make? Who knows?
6984
6985 2005-09-14  David Schleef  <ds@schleef.org>
6986
6987         * check/generic/states.c: 
6988         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind):
6989         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
6990           Fixes for changes in registry API.
6991
6992         * configure.ac: Only export gst_plugins_desc.  Add -no-undefined
6993           to GST_PLUGIN_LDFLAGS.
6994         * ext/libvisual/visual.c: Make the library shut up.
6995         * gst-libs/gst/audio/audio.c: Don't define a plugin in a library.
6996         * gst-libs/gst/audio/gstaudiofilter.c: same
6997
6998 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
6999
7000         * docs/plugins/Makefile.am:
7001         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7002         * docs/plugins/inspect/plugin-libvisual.xml:
7003         * docs/plugins/tmpl/element-tcpserversink.sgml:
7004         * ext/theora/theoraenc.c:
7005           add libvisual plugin and theoraenc element to docs
7006
7007 2005-09-14  Thomas Vander Stichele  <thomas at apestaart dot org>
7008
7009         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7010         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7011         * ext/theora/theoraenc.c:
7012           add theoraenc
7013
7014 2005-09-13  Tim-Philipp Müller  <tim at centricular dot net>
7015
7016         * gst/audioconvert/Makefile.am:
7017           Audioconvert derives from GstBaseTransform and should
7018           link to the library with our base elements to avoid
7019           unresolved symbols. Makes things work with MinGW (#316160)
7020
7021         * gst/playback/test4.c: (main):
7022           Fix MinGW build problem and use g_usleep() instead of 
7023           sleep() (#316162)
7024
7025 2005-09-12  Wim Taymans  <wim@fluendo.com>
7026
7027         * gst/audioconvert/audioconvert.c: (float),
7028         (audio_convert_prepare_context), (audio_convert_convert):
7029         * gst/audioconvert/audioconvert.h:
7030         Cleanups, speedups, simplifications, added back support
7031         for 24 bits.
7032
7033 2005-09-11  Thomas Vander Stichele  <thomas at apestaart dot org>
7034
7035         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7036         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7037         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
7038         * docs/plugins/tmpl/element-tcpserversink.sgml:
7039         * gst/ffmpegcolorspace/gstffmpeg.c:
7040         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7041         * gst/videotestsrc/gstvideotestsrc.c:
7042         * gst/volume/gstvolume.c:
7043           add more elements to the docs
7044
7045 2005-09-09  Jan Schmidt  <thaytan@mad.scientist.com>
7046
7047         * check/Makefile.am:
7048         * check/pipelines/simple_launch_lines.c: (setup_pipeline),
7049         (run_pipeline), (GST_START_TEST), (simple_launch_lines_suite):
7050           Add extra tests for basetransform based components. 
7051           Comment out the test_element_negotiation test until we decide
7052           if it's testing correct behaviour.
7053         * ext/libvisual/visual.c: (gst_visual_init), (get_buffer),
7054         (gst_visual_chain), (gst_visual_change_state):
7055           Slightly more correct but still bogus timestamping.
7056           Fix state change function.
7057         * gst/audioconvert/gstaudioconvert.c:
7058         (gst_audio_convert_class_init):
7059         * gst/audioresample/gstaudioresample.c:
7060         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7061         (gst_ffmpegcsp_class_init):
7062         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
7063         (gst_videoscale_prepare_size), (gst_videoscale_set_caps),
7064         (gst_videoscale_prepare_image):
7065         * gst/volume/gstvolume.c: (gst_volume_class_init),
7066         (volume_transform_ip):
7067           Basetransform updates. Enable passthrough modes.
7068         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
7069         (gst_ximagesink_renegotiate_size), (gst_ximagesink_xcontext_get),
7070         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
7071           Negotiation fix that allows the window to return to the original
7072           size and renegotiate passthrough upstream. Extra debug output.
7073
7074 2005-09-09  Thomas Vander Stichele  <thomas at apestaart dot org>
7075
7076         * gst/sine/gstsinesrc.c:
7077         * gst/volume/gstvolume.c:
7078           fix up header include
7079
7080 2005-09-09  Stefan Kost  <ensonic@users.sf.net>
7081
7082         * gst-libs/gst/audio/gstbaseaudiosink.c:
7083         (gst_base_audio_sink_render):
7084         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_commit):
7085         * gst/volume/gstvolume.c: (gst_volume_class_init),
7086         (volume_transform):
7087           fixing lost sync, some more debugging
7088
7089 2005-09-08  Jan Schmidt  <thaytan@mad.scientist.com>
7090
7091         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
7092         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_xcontext_get):
7093         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
7094         (gst_xvimagesink_check_xshm_calls):
7095           Fix compilation when XShm is not available.
7096
7097 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
7098
7099         * ext/libvisual/visual.c: (gst_visual_dispose),
7100         (gst_visual_getcaps), (gst_visual_src_setcaps),
7101         (gst_visual_sink_setcaps), (get_buffer), (gst_visual_chain),
7102         (gst_visual_change_state):
7103           Finish fixing up libvisual plugin so that it runs. 
7104
7105 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
7106
7107         * ext/vorbis/vorbisenc.c:
7108         * gst-libs/gst/tag/gstvorbistag.c:
7109           gsttaginterface.h -> gsttagsetter.h
7110
7111 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
7112
7113         * check/pipelines/simple_launch_lines.c: (GST_START_TEST):
7114           added another test that failes for me (test is not active by default)
7115
7116 2005-09-07  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
7117
7118         * configure.ac:
7119           v4l2 is no longer in gst-plugins-base
7120
7121 2005-09-07  Jan Schmidt  <thaytan@mad.scientist.com>
7122
7123         * configure.ac:
7124           In the output at the end, don't show the first plugin on the same
7125           line as "Core plug-ins, always built:".
7126           Indent the output as for other plugin categories
7127         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_create):
7128           #define that can be used to not use peer buffer_alloc functions for
7129           test purposes.
7130         * sys/ximage/ximagesink.c: (gst_ximage_buffer_init),
7131         (gst_ximage_buffer_get_type), (gst_ximagesink_ximage_new),
7132         (gst_ximagesink_show_frame):
7133         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_init),
7134         (gst_xvimage_buffer_get_type), (gst_xvimagesink_setcaps),
7135         (gst_xvimagesink_show_frame):
7136           Error case handling fixes. gst-launch fakesrc ! x[v]imagesink now
7137           fails gracefully instead of XError aborting or deadlocking.
7138
7139 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
7140
7141         * ext/libvisual/Makefile.am:
7142           link against gst-base-libs
7143
7144 2005-09-06  David Schleef  <ds@schleef.org>
7145
7146         * configure.ac: Enable libvisual plugin.
7147         * ext/libvisual/Makefile.am:
7148         * ext/libvisual/visual.c: Fixes to make it compile.
7149
7150 === release 0.9.2 ===
7151
7152 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
7153
7154         * NEWS:
7155         * RELEASE:
7156         * configure.ac:
7157         * docs/random/ChangeLog-0.8:
7158           releasing 0.9.2, "Spoon"
7159
7160 2005-09-05  Michael Smith <msmith@fluendo.com>
7161
7162         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
7163           libvorbis accepts quality as low as -0.1, not just 0.0. So accept
7164           that in the vorbisenc element.
7165
7166 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
7167
7168         * common/gtk-doc-plugins.mak:
7169         * docs/plugins/Makefile.am:
7170           fix distcheck
7171         * gst/audioresample/resample.c:
7172           fix wrong docstring
7173
7174 2005-09-04  Thomas Vander Stichele  <thomas at apestaart dot org>
7175
7176         * common/gst-xmlinspect.py:
7177         * common/gtk-doc-plugins.mak:
7178           only inspect plugins for this given package
7179           require gst-python 0.9
7180
7181 2005-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
7182
7183         * Makefile.am:
7184         * autogen.sh:
7185         * common/gst-xmlinspect.py:
7186         * configure.ac:
7187         * docs/Makefile.am:
7188         * docs/plugins/inspect/plugin-alsa.xml:
7189         * docs/plugins/inspect/plugin-audioresample.xml:
7190         * docs/plugins/inspect/plugin-ffmpegcolorspace.xml:
7191         * docs/plugins/inspect/plugin-ogg.xml:
7192         * docs/plugins/tmpl/element-gnomevfssink.sgml:
7193         * docs/plugins/tmpl/element-multifdsink.sgml:
7194         * docs/plugins/tmpl/element-tcpserversink.sgml:
7195         * docs/plugins/tmpl/element-vorbisenc.sgml:
7196         * gst-plugins-base.spec.in:
7197           various doc-related updates
7198
7199 2005-08-31  Wim Taymans  <wim@fluendo.com>
7200
7201         * gst-libs/gst/audio/gstbaseaudiosink.c:
7202         (gst_base_audio_sink_render):
7203         Resync if the buffer timestamps drift more than a 10th 
7204         of a second.
7205
7206 2005-08-31  Tim-Philipp M??ller  <tim at centricular dot net>
7207
7208         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_set_property),
7209         (gst_v4lsrc_get_property):
7210           The 'timestamp-offset' property is registered as an int64, so
7211           let's use g_value_{set|get}_int64() in our setter and getter
7212           functions (makes it work and fixes warnings with gst-inspect).
7213
7214 2005-08-30  Wim Taymans  <wim@fluendo.com>
7215
7216         * check/elements/audioconvert.c: (setup_audioconvert):
7217         * check/elements/audioresample.c: (setup_audioresample):
7218         * check/elements/volume.c: (setup_volume):
7219         Fix checks.
7220
7221 2005-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
7222
7223         * common/gtk-doc-plugins.mak:
7224         * common/plugins.xsl:
7225         * docs/plugins/Makefile.am:
7226           make module a param
7227
7228 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
7229
7230         * examples/seeking/seek.c: (make_mp3_pipeline),
7231         (make_mpeg_pipeline), (seek_cb), (start_seek), (stop_seek),
7232         (play_cb), (pause_cb), (stop_cb):
7233           update the example
7234
7235 2005-08-30  Stefan Kost  <ensonic@users.sf.net>
7236
7237         * gst/volume/gstvolume.c: (gst_volume_class_init),
7238         (volume_transform):
7239           do not update controlled params, if buffer has no timestamp
7240
7241 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
7242
7243         * configure.ac:
7244         * gst/sine/Makefile.am:
7245         * gst/volume/Makefile.am:
7246           controllerized elements also need to link against controller-libs ;)
7247
7248 2005-08-29  Stefan Kost  <ensonic@users.sf.net>
7249
7250         * docs/libs/tmpl/gstcolorbalance.sgml:
7251         * docs/libs/tmpl/gstgconf.sgml:
7252         * docs/libs/tmpl/gstmixer.sgml:
7253         * docs/libs/tmpl/gstringbuffer.sgml:
7254         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
7255         (gst_sinesrc_create):
7256         * gst/volume/gstvolume.c: (gst_volume_class_init),
7257         (volume_transform):
7258           controllerized two audio plugins
7259
7260 2005-08-29  Andy Wingo  <wingo@pobox.com>
7261
7262         * ext/vorbis/vorbisdec.c (vorbis_dec_convert, vorbis_dec_push) 
7263         (vorbis_handle_data_packet): Fix some int overflow errors.
7264
7265         * ext/ogg/gstoggdemux.c (gst_ogg_demux_init): Init total_time to
7266         -1.
7267         (gst_ogg_demux_perform_seek): Clamp segment_stop only if it's
7268         valid.
7269         (gst_ogg_pad_submit_packet): Subtract the chain's begin_time only
7270         if it's valid. Fixed streaming-mode playback.
7271
7272         * check/elements/volume.c (cleanup_volume): Fix for running
7273         CK_FORK=no.
7274
7275         * check/elements/audioconvert.c: Convert from native endian, not
7276         little endian.
7277
7278 2005-08-29  Michael Smith <msmith@fluendo.com>
7279
7280         * ext/ogg/Makefile.am:
7281         * ext/ogg/gstogg.c: (plugin_init):
7282         * ext/ogg/gstoggparse.c: (gst_ogg_parse_get_type), (free_stream),
7283         (gst_ogg_parse_delete_all_streams), (gst_ogg_parse_new_stream),
7284         (gst_ogg_parse_find_stream), (gst_ogg_parse_base_init),
7285         (gst_ogg_parse_class_init), (gst_ogg_parse_init),
7286         (gst_ogg_parse_dispose), (gst_ogg_parse_submit_buffer),
7287         (gst_ogg_parse_append_header), (gst_ogg_parse_is_header),
7288         (gst_ogg_parse_buffer_from_page), (gst_ogg_parse_chain),
7289         (gst_ogg_parse_change_state), (gst_ogg_parse_plugin_init):
7290         Add an ogg parser element.
7291
7292 2005-08-28  Andy Wingo  <wingo@pobox.com>
7293
7294         * Updates for two-arg init from GST_BOILERPLATE_FULL.
7295
7296 2005-08-26  Wim Taymans  <wim@fluendo.com>
7297
7298         * gst/audioconvert/audioconvert.c: (if), (float),
7299         (audio_convert_get_func_index), (check_default),
7300         (audio_convert_clean_fmt), (audio_convert_prepare_context),
7301         (audio_convert_clean_context), (audio_convert_get_sizes),
7302         (audio_convert_convert):
7303         Cleanups.
7304
7305 2005-08-26  Wim Taymans  <wim@fluendo.com>
7306
7307         * gst/audioconvert/audioconvert.c: (if), (float),
7308         (audio_convert_get_func_index), (check_default),
7309         (audio_convert_clean_fmt), (audio_convert_prepare_context),
7310         (audio_convert_clean_context), (audio_convert_get_sizes),
7311         (audio_convert_convert):
7312         More elegant and working temp buffer selection algo.
7313
7314 2005-08-26  Wim Taymans  <wim@fluendo.com>
7315
7316         * gst/audioconvert/audioconvert.c: (if), (float),
7317         (audio_convert_get_func_index), (check_default),
7318         (audio_convert_clean_fmt), (audio_convert_prepare_context),
7319         (audio_convert_clean_context), (audio_convert_get_sizes),
7320         (get_temp_buffer), (audio_convert_convert):
7321         Use realloc else we lose our original data.
7322
7323 2005-08-26  Thomas Vander Stichele  <thomas at apestaart dot org>
7324
7325         * gst/audioresample/gstaudioresample.c:
7326           use base class' newsegment to properly timestamp
7327
7328 2005-08-26  Wim Taymans  <wim@fluendo.com>
7329
7330         * gst/audioconvert/audioconvert.c: (if), (float),
7331         (audio_convert_get_func_index), (check_default),
7332         (audio_convert_clean_fmt), (audio_convert_prepare_context),
7333         (audio_convert_clean_context), (audio_convert_get_sizes),
7334         (get_temp_buffer), (audio_convert_convert):
7335         * gst/audioconvert/gstaudioconvert.c:
7336         (gst_audio_convert_parse_caps), (gst_audio_convert_get_unit_size),
7337         (gst_audio_convert_transform_caps),
7338         (gst_audio_convert_fixate_caps), (gst_audio_convert_transform):
7339         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_mix):
7340         Oops, allocate enough space to perform the channel mix.
7341
7342 2005-08-26  Wim Taymans  <wim@fluendo.com>
7343
7344         * gst/audioconvert/Makefile.am:
7345         * gst/audioconvert/audioconvert.c: (if), (float),
7346         (audio_convert_get_func_index), (check_default),
7347         (audio_convert_clean_fmt), (audio_convert_prepare_context),
7348         (audio_convert_clean_context), (audio_convert_get_sizes),
7349         (get_temp_buffer), (audio_convert_convert):
7350         * gst/audioconvert/audioconvert.h:
7351         * gst/audioconvert/gstaudioconvert.c:
7352         (gst_audio_convert_class_init), (gst_audio_convert_init),
7353         (gst_audio_convert_dispose), (gst_audio_convert_parse_caps),
7354         (gst_audio_convert_get_unit_size),
7355         (gst_audio_convert_transform_caps),
7356         (gst_audio_convert_fixate_caps), (gst_audio_convert_set_caps),
7357         (gst_audio_convert_transform_ip), (gst_audio_convert_transform):
7358         * gst/audioconvert/gstaudioconvert.h:
7359         * gst/audioconvert/gstchannelmix.c: (gst_channel_mix_unset_matrix),
7360         (gst_channel_mix_fill_identical),
7361         (gst_channel_mix_fill_compatible), (gst_channel_mix_detect_pos),
7362         (gst_channel_mix_fill_one_other), (gst_channel_mix_fill_others),
7363         (gst_channel_mix_fill_normalize), (gst_channel_mix_fill_matrix),
7364         (gst_channel_mix_setup_matrix), (gst_channel_mix_passthrough),
7365         (gst_channel_mix_mix):
7366         * gst/audioconvert/gstchannelmix.h:
7367         Cleanups, librarify a bit, optimize, better negotiation and more.
7368
7369 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
7370
7371         * ext/ogg/gstoggdemux.c: (ogg_find_peek):
7372         Another from MikeS:
7373         During typefinding, don't support negative offsets
7374         (offsets from the end of the stream) in our typefind->peek() function
7375         - nothing embedded in ogg ever needs them. However, we need to recognise
7376         those requests and reject them, otherwise we return invalid pointers.
7377
7378 2005-08-26  Jan Schmidt  <thaytan@mad.scientist.com>
7379
7380         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
7381         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_class_init),
7382         (vorbisdec_finalize), (vorbis_handle_type_packet):
7383           Big shout-out to MikeS for fixing this giant memory leak.
7384           Huzzah!
7385
7386 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
7387
7388         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose),
7389         (audio_convert_get_unit_size):
7390           plug some leaks
7391
7392 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
7393
7394         * check/Makefile.am:
7395         * check/elements/audioconvert.c: (setup_audioconvert),
7396         (cleanup_audioconvert), (get_int_caps), (verify_convert),
7397         (GST_START_TEST), (audioconvert_suite), (main):
7398           add a test for audioconvert
7399         * gst/audioresample/gstaudioresample.c:
7400         * gst/audioresample/gstaudioresample.h:
7401           set DURATION so that TIMESTAMP(a) + DURATION(a) == TIMESTAMP(b);
7402           note that for buffers of 1/3 sec this means DURATION(c) is 
7403           one nanosecond more than for a and b
7404
7405 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
7406
7407         * check/Makefile.am:
7408         * check/elements/audioresample.c: (setup_audioresample),
7409         (cleanup_audioresample), (fail_unless_perfect_stream),
7410         (test_perfect_stream_instance), (GST_START_TEST),
7411           add a check for audioresample
7412         (audioresample_suite), (main):
7413         * check/elements/volume.c: (GST_START_TEST):
7414           remove unused method
7415         * gst/audioresample/gstaudioresample.c:
7416           set correct buffer parameters since we're changing them
7417         * gst/audioresample/resample_ref.c: (resample_scale_ref):
7418           add some debug
7419
7420 2005-08-25  Thomas Vander Stichele  <thomas at apestaart dot org>
7421
7422         * gst/audioresample/debug.c:
7423         * gst/audioresample/gstaudioresample.c:
7424           add room for extra overlap samples when asked to transform size
7425           protect against possible mem corruption and check for discrepancies
7426           between written size and outbuffer's size so we can warn for
7427           potential problems
7428         * gst/audioresample/resample.c: (resample_init),
7429         (resample_get_output_size_for_input), (resample_get_output_size),
7430         (resample_set_n_channels), (resample_set_format):
7431           set debug level based on RESAMPLE_DEBUG env var
7432           make sure that get_output_size* returns a whole number of
7433           sample_size
7434           set sample_size each time either channel or format is set
7435         * gst/audioresample/resample_chunk.c: (resample_scale_chunk):
7436         * gst/audioresample/resample_functable.c:
7437         (resample_scale_functable):
7438         * gst/audioresample/resample_ref.c: (resample_scale_ref):
7439           remove r->sample_size, it's done in resample.c now
7440           add some debugging to the ref implementation
7441           make sure we only give back bytes that are wholes of the sample
7442           size
7443
7444 2005-08-25  Jan Schmidt  <thaytan@mad.scientist.com>
7445         * gst/playback/gstplaybasebin.c: (fill_buffer):
7446         Revert unpopular change for GST_MESSAGE_SRC to GObject.
7447
7448 2005-08-25  Stefan Kost  <ensonic@users.sf.net>
7449
7450         * gst/volume/gstvolume.c:
7451           made set_caps function static
7452
7453 2005-08-24  Wim Taymans  <wim@fluendo.com>
7454
7455         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
7456         (gst_vorbisenc_change_state):
7457         Stop leaking taglists.
7458
7459 2005-08-24  Wim Taymans  <wim@fluendo.com>
7460
7461         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_src_query),
7462         (gst_ogg_pad_event), (gst_ogg_demux_factory_filter),
7463         (gst_ogg_pad_submit_packet), (gst_ogg_chain_new),
7464         (gst_ogg_demux_init), (gst_ogg_demux_perform_seek),
7465         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
7466         (gst_ogg_demux_chain), (gst_ogg_demux_loop), (gst_ogg_print):
7467         Parse seeking events better.
7468         Unref static caps.
7469         Generate correct newsegment events, fixes seeking in live oggs.
7470
7471         * ext/theora/theoradec.c: (theora_dec_src_query),
7472         (theora_dec_src_event), (theora_dec_src_getcaps),
7473         (theora_dec_sink_event), (theora_dec_push), (theora_dec_chain):
7474         Use newsegment values to report correct play time.
7475
7476         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7477         (vorbis_dec_src_event), (vorbis_dec_sink_event):
7478         * ext/vorbis/vorbisdec.h:
7479         Parse and use newsegment values to report correct play time.
7480
7481         * gst-libs/gst/audio/gstbaseaudiosink.c:
7482         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
7483         Clear ringbuffer on flush.
7484         Use newsegment values to calculate playback time.
7485
7486         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times):
7487         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
7488         Basesink does newsegment calculations for us now.
7489
7490 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7491
7492         * check/Makefile.am:
7493         * configure.ac:
7494           add core's plugins to the mix so that playbin works
7495         * check/generic/states.c: (GST_START_TEST):
7496           set a 0 timeout on pipelines, so they don't force the next
7497           state change
7498         * gst/playback/gstplaybasebin.c: (setup_source), (prepare_output),
7499         (gst_play_base_bin_change_state):
7500           remove the crappy error handling and do GST error handling
7501
7502 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7503
7504         * check/Makefile.am:
7505         * check/generic/states.c: (GST_START_TEST), (states_suite), (main):
7506           add same test as to core, it bitches out on playbin atm.
7507
7508 2005-08-24  Wim Taymans  <wim@fluendo.com>
7509
7510         * configure.ac:
7511         Remove audioscale.
7512
7513 2005-08-24  Wim Taymans  <wim@fluendo.com>
7514
7515         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
7516         (gst_videoscale_prepare_size), (parse_caps),
7517         (gst_videoscale_set_caps), (gst_videoscale_get_size),
7518         (gst_videoscale_prepare_image), (gst_videoscale_transform_ip),
7519         (gst_videoscale_transform):
7520         * gst/videoscale/gstvideoscale.h:
7521         Refactor, make use of BaseTranform really well.
7522
7523 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7524
7525         * configure.ac:
7526           compile audioresample
7527         * gst/audioresample/Makefile.am:
7528         * gst/audioresample/buffer.c:
7529         * gst/audioresample/functable.c:
7530         * gst/audioresample/gstaudioresample.c:
7531         * gst/audioresample/gstaudioresample.h:
7532         * gst/audioresample/resample.c:
7533         (resample_get_output_size_for_input):
7534         * gst/audioresample/resample.h:
7535         * gst/audioresample/resample_chunk.c:
7536         * gst/audioresample/resample_functable.c:
7537         * gst/audioresample/resample_ref.c:
7538           port to use basetransform; doesn't work in all cases yet
7539
7540 2005-08-24  Thomas Vander Stichele  <thomas at apestaart dot org>
7541
7542         * gst/audioconvert/gstaudioconvert.c:
7543         (gst_audio_convert_class_init), (gst_audio_convert_init),
7544         (audio_convert_get_unit_size), (audio_convert_transform_caps),
7545         (audio_convert_fixate_caps), (audio_convert_set_caps),
7546         (audio_convert_transform),
7547         (gst_audio_convert_buffer_to_default_format),
7548         (gst_audio_convert_buffer_from_default_format),
7549         (gst_audio_convert_channels):
7550         * gst/audioconvert/gstchannelmix.c:
7551         * gst/audioconvert/gstchannelmix.h:
7552           port to basetransform
7553         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7554         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_class_init),
7555         (gst_ffmpegcsp_get_unit_size):
7556         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
7557         (gst_videoscale_transform_caps), (gst_videoscale_get_unit_size):
7558           fix for basetransform changes
7559
7560 2005-08-24  Jan Schmidt  <thaytan@mad.scientist.com>
7561
7562         * check/Makefile.am:
7563           Add CHECK_CFLAGS and LDFLAGS
7564
7565         * gst/playback/gstplaybasebin.c: (fill_buffer):
7566           GST_MESSAGE_SRC became a GObject
7567
7568 2005-08-24  Wim Taymans  <wim@fluendo.com>
7569
7570         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_set_sample),
7571         (gst_ring_buffer_clear_all):
7572         * gst-libs/gst/audio/gstringbuffer.h:
7573         Added function to clear the ringbuffer.
7574
7575 2005-08-24  Andy Wingo  <wingo@pobox.com>
7576
7577         * sys/v4l/gstv4lelement.c (gst_v4lelement_start) 
7578         (gst_v4lelement_stop): Call _start and _stop for xoverlay instead
7579         of _open and _close.
7580
7581         * sys/v4l/gstv4lxoverlay.h:
7582         * sys/v4l/gstv4lxoverlay.c (gst_v4l_xoverlay_set_xwindow_id): Open
7583         an Xv connection here, instead of all the time. Make Xv only be
7584         loaded if you axe for it. Kindof a workaround for buggy behaviour
7585         of Xv when using remote xservers (XvQueryExtension would block).
7586         (gst_v4l_xoverlay_stop, gst_v4l_xoverlay_start): New functions,
7587         replace the _open and _close public API. Only start the xv
7588         connection if necessary.
7589         (gst_v4l_xoverlay_open, gst_v4l_xoverlay_close): Made static.
7590
7591 2005-08-23  David Schleef  <ds@schleef.org>
7592
7593         * gst/audioresample/Makefile.am: Leet audioresampling code
7594         * gst/audioresample/buffer.c:
7595         * gst/audioresample/buffer.h:
7596         * gst/audioresample/debug.c:
7597         * gst/audioresample/debug.h:
7598         * gst/audioresample/functable.c:
7599         * gst/audioresample/functable.h:
7600         * gst/audioresample/gstaudioresample.c:
7601         * gst/audioresample/gstaudioresample.h:
7602         * gst/audioresample/resample.c:
7603         * gst/audioresample/resample.h:
7604         * gst/audioresample/resample_chunk.c:
7605         * gst/audioresample/resample_functable.c:
7606         * gst/audioresample/resample_ref.c:
7607
7608 2005-08-23  Wim Taymans  <wim@fluendo.com>
7609
7610         * examples/seeking/seek.c: (make_vorbis_pipeline),
7611         (make_theora_pipeline), (make_vorbis_theora_pipeline), (do_seek):
7612         Small seek updates.
7613
7614 2005-08-23  Andy Wingo  <wingo@pobox.com>
7615
7616         * gst-libs/gst/audio/gstbaseaudiosrc.c
7617         (gst_base_audio_src_fixate): Only fixate endianness if it is
7618         present in the caps.
7619
7620 2005-08-22  Andy Wingo  <wingo@pobox.com>
7621
7622         * ext/alsa/gstalsasink.c (gst_alsasink_get_property): 
7623         * ext/alsa/gstalsasrc.c (gst_alsasrc_get_property): Add a
7624         device-name property.
7625
7626         * gst-libs/gst/audio/gstaudiosrc.h:
7627         * gst-libs/gst/audio/gstaudiosrc.c: Implement open_device and
7628         close_device in the ring buffer, like gstaudiosink.
7629
7630         * ext/alsa/gstalsamixer.h:
7631         * ext/alsa/gstalsamixer.c: Not a GObject any more. Include a nifty
7632         macro to implement the interface without much code. Cleanups. 
7633
7634         * ext/alsa/gstalsasrc.h:
7635         * ext/alsa/gstalsasrc.c: Be a mixer. Open device and mixer in
7636         READY.
7637
7638         * ext/alsa/Makefile.am: Add new files.
7639         * ext/alsa/gstalsamixerelement.c: 
7640         * ext/alsa/gstalsamixerelement.c: Split element code out from
7641         mixer code so that alsasrc can be a mixer too.
7642
7643 2005-08-21  Thomas Vander Stichele  <thomas at apestaart dot org>
7644
7645         * check/elements/volume.c: (setup_volume), (cleanup_volume),
7646         (GST_START_TEST):
7647         * check/elements/vorbisdec.c: (setup_vorbisdec),
7648         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite):
7649         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
7650         (vorbis_handle_identification_packet),
7651         (vorbis_handle_comment_packet), (vorbis_handle_type_packet),
7652         (vorbis_handle_header_packet), (vorbis_dec_push),
7653         (vorbis_dec_chain):
7654           use the setup/teardown methods to save code.  save code is good.
7655
7656 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7657
7658         * check/Makefile.am:
7659           add ext dir for plugins
7660           add vorbisdec test conditionally
7661         * check/elements/volume.c: (setup_volume), (cleanup_volume),
7662         (GST_START_TEST), (volume_suite):
7663           add a test with wrong caps
7664         * check/elements/vorbisdec.c: (chain_func), (setup_vorbisdec),
7665         (cleanup_vorbisdec), (GST_START_TEST), (vorbisdec_suite), (main):
7666           add a vorbisdec test
7667         * ext/ogg/gstoggdemux.c: (gst_ogg_chain_new_stream),
7668         (gst_ogg_demux_chain), (gst_ogg_demux_loop):
7669           clean up debug output
7670         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
7671           yay, fix a segfault/security issue in vorbisdec
7672           gst-launch fakesrc ! vorbisdec wasn't happy
7673         * ext/vorbis/vorbisenc.c: (vorbisenc_get_type),
7674         (gst_vorbisenc_class_init), (gst_vorbisenc_sink_setcaps),
7675         (gst_vorbisenc_convert_src), (gst_vorbisenc_convert_sink),
7676         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
7677         (gst_vorbisenc_init), (gst_vorbisenc_metadata_set1),
7678         (gst_vorbisenc_set_metadata), (get_constraints_string),
7679         (update_start_message), (gst_vorbisenc_setup),
7680         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
7681         (gst_vorbisenc_push_packet), (gst_vorbisenc_sink_event),
7682         (gst_vorbisenc_chain), (gst_vorbisenc_get_property),
7683         (gst_vorbisenc_set_property), (gst_vorbisenc_change_state):
7684         * ext/vorbis/vorbisenc.h:
7685           march in line
7686         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
7687         (gst_ffmpegcsp_transform):
7688           have the kow come home
7689         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
7690           debug my func ptr
7691         * gst/volume/gstvolume.c: (volume_set_caps):
7692           add a debug
7693
7694 2005-08-20  Thomas Vander Stichele  <thomas at apestaart dot org>
7695
7696         * Makefile.am:
7697         * check/.cvsignore:
7698         * check/Makefile.am:
7699         * check/elements/.cvsignore:
7700         * check/elements/volume.c: (chain_func), (event_func),
7701         (setup_volume), (cleanup_volume), (GST_START_TEST), (volume_suite),
7702         (main):
7703         * configure.ac:
7704           add unit test structure for gst-plugins-base
7705           add a test for volume
7706         * gst/volume/gstvolume.c: (gst_volume_list_tracks),
7707         (gst_volume_set_volume), (gst_volume_get_volume),
7708         (gst_volume_set_mute), (gst_volume_class_init), (gst_volume_init),
7709         (volume_funcfind), (volume_process_float), (volume_process_int16),
7710         (volume_set_caps), (volume_transform), (volume_update_mute),
7711         (volume_update_volume), (volume_set_property),
7712         (volume_get_property):
7713           document a little; use basetransform vmethod _set_caps
7714
7715 2005-08-19  Andy Wingo  <wingo@pobox.com>
7716
7717         * ext/alsa/gstalsamixertrack.h:
7718         * ext/alsa/gstalsamixertrack.c:
7719         * ext/alsa/gstalsamixeroptions.h:
7720         * ext/alsa/gstalsamixeroptions.c:
7721         * ext/alsa/gstalsamixer.h:
7722         * ext/alsa/gstalsamixer.c: Port to 0.9.
7723
7724         * ext/alsa/Makefile.am: Build mixer, mixeroptions, mixertracks.
7725         Remove gstalsa.c and alsaclock. No more cruft here.
7726         
7727 2005-08-18  Wim Taymans  <wim@fluendo.com>
7728
7729         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7730         (gst_base_rtp_depayload_chain),
7731         (gst_base_rtp_depayload_add_to_queue),
7732         (gst_base_rtp_depayload_push),
7733         (gst_base_rtp_depayload_queue_release):
7734         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7735         Fix for RTPBuffer changes.
7736
7737         * gst-libs/gst/rtp/gstrtpbuffer.c: (gst_rtpbuffer_allocate_data),
7738         (gst_rtpbuffer_new_take_data), (gst_rtpbuffer_new_copy_data),
7739         (gst_rtpbuffer_new_allocate), (gst_rtpbuffer_new_allocate_len),
7740         (gst_rtpbuffer_calc_header_len), (gst_rtpbuffer_calc_packet_len),
7741         (gst_rtpbuffer_calc_payload_len), (gst_rtpbuffer_validate_data),
7742         (gst_rtpbuffer_validate), (gst_rtpbuffer_set_packet_len),
7743         (gst_rtpbuffer_get_packet_len), (gst_rtpbuffer_get_version),
7744         (gst_rtpbuffer_set_version), (gst_rtpbuffer_get_padding),
7745         (gst_rtpbuffer_set_padding), (gst_rtpbuffer_pad_to),
7746         (gst_rtpbuffer_get_extension), (gst_rtpbuffer_set_extension),
7747         (gst_rtpbuffer_get_ssrc), (gst_rtpbuffer_set_ssrc),
7748         (gst_rtpbuffer_get_csrc_count), (gst_rtpbuffer_get_csrc),
7749         (gst_rtpbuffer_set_csrc), (gst_rtpbuffer_get_marker),
7750         (gst_rtpbuffer_set_marker), (gst_rtpbuffer_get_payload_type),
7751         (gst_rtpbuffer_set_payload_type), (gst_rtpbuffer_get_seq),
7752         (gst_rtpbuffer_set_seq), (gst_rtpbuffer_get_timestamp),
7753         (gst_rtpbuffer_set_timestamp), (gst_rtpbuffer_get_payload_len),
7754         (gst_rtpbuffer_get_payload):
7755         * gst-libs/gst/rtp/gstrtpbuffer.h:
7756         Don't subclass GstBuffer but add methods and helper functions
7757         to construct and manipulate RTP packets in regular GstBuffers.
7758
7759 2005-08-18  Stefan Kost  <ensonic@users.sf.net>
7760
7761         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_query):
7762           moved statement below switch
7763         * gst/volume/gstvolume.c: (gst_volume_class_init):
7764           added debug ptr
7765
7766 2005-08-16  Wim Taymans  <wim@fluendo.com>
7767
7768         * gst-libs/gst/audio/gstbaseaudiosrc.c:
7769         (gst_base_audio_src_change_state):
7770         Open and close device in READY<->NULL state change.
7771
7772 2005-08-16  Andy Wingo  <wingo@pobox.com>
7773
7774         * examples/seeking/Makefile.am: Don't compile non-compiling
7775         compiled objects with the compiler.
7776
7777         * examples/seeking/seek.c (make_dv_pipeline): Update for new DV
7778         elements.
7779
7780 2005-08-12  Philippe Khalaf <burger@speedy.org>
7781         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7782         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7783           Made a thread to release the queue.
7784           Removed timestamp conversion for now.
7785
7786 2005-08-10  Philippe Khalaf <burger@speedy.org>
7787         * gst-libs/gst/rtp/gstbasertpdepayload.c:
7788         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7789           Added rtp timestamp -> gst timestamp conversion.
7790           Fixed several problems with queue.
7791
7792 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
7793
7794         * gst-libs/gst/audio/gstaudioclock.h:
7795         * gst-libs/gst/audio/gstaudiofilter.h:
7796         * gst-libs/gst/audio/gstaudiosink.h:
7797         * gst-libs/gst/audio/gstaudiosrc.h:
7798         * gst-libs/gst/audio/gstbaseaudiosink.h:
7799         * gst-libs/gst/audio/gstbaseaudiosrc.h:
7800         * gst-libs/gst/audio/gstringbuffer.h:
7801         * gst-libs/gst/net/gstnetbuffer.h:
7802         * gst-libs/gst/rtp/gstbasertpdepayload.h:
7803         * gst-libs/gst/rtp/gstrtpbuffer.h:
7804           Add padding (you will need to rebuild gst-plugins-base,
7805           gst-plugins and all applications afterwards!)
7806
7807 2005-08-09  Tim-Philipp M??ller  <tim at centricular dot net>
7808
7809         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
7810         (gst_riff_parse_chunk):
7811           Fix bug in debug message and add some more debug messages.
7812
7813 2005-08-08  Edward Hervey  <edward@fluendo.com>
7814
7815         * gst-libs/gst/riff/riff-media.c:
7816         backported updates since branch
7817
7818 2005-08-08  Andy Wingo  <wingo@pobox.com>
7819
7820         * gst-libs/gst/audio/gstbaseaudiosink.c
7821         (gst_base_audio_sink_change_state): Open the device in NULL->READY
7822         like good elements should. Close on READY->NULL too.
7823
7824         * gst-libs/gst/audio/gstaudiosink.c
7825         (gst_audioringbuffer_open_device,
7826         (gst_audioringbuffer_close_device, gst_audioringbuffer_acquire)
7827         (gst_audioringbuffer_release): Updates for new ring buffer API,
7828         hook into the new audio sink api.
7829
7830         * gst-libs/gst/audio/gstaudiosink.h (GstAudioSinkClass.open)
7831         (GstAudioSinkClass.close): Just open and close the device -- no
7832         resource allocation or configuration.
7833         (GstAudioSinkClass.prepare, GstAudioSinkClass.unprepare): New
7834         vmethods, handle device setup and resource allocation.
7835
7836         * ext/alsa/gstalsasink.c (gst_alsasink_open, gst_alsasink_close)
7837         (gst_alsasink_prepare, gst_alsasink_unprepare): Update for new
7838         base class API.
7839
7840         * gst-libs/gst/audio/gstringbuffer.h
7841         (GstRingBufferClass.open_device, GstRingBufferClass.close_device):
7842         New vmethods.
7843
7844         * gst-libs/gst/audio/gstringbuffer.c (gst_ring_buffer_open_device)
7845         (gst_ring_buffer_close_device, gst_ring_buffer_device_is_open):
7846         New API functions. The device should be opened before acquiring
7847         and closed after releasing.
7848
7849 2005-08-08  Tim-Philipp M??ller  <tim at centricular dot net>
7850
7851         * gst-libs/gst/interfaces/mixer.h:
7852           Reset padding to GST_PADDING.
7853
7854 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7855
7856         * gst/playback/gstplaybin.c: (remove_sinks):
7857           Remove visualization from parent explicitely; works around some
7858           apparent refcount issue that I haven't tracked down yet.
7859
7860 2005-08-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7861
7862         * ext/alsa/gstalsasink.c: (set_hwparams):
7863           Assign debug category, add negotiation debug msgs.
7864
7865 2005-08-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7866
7867         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_start):
7868           Fix error code for file-not-found to NOT_FOUND.
7869
7870 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7871
7872         * common/gtk-doc-plugins.mak:
7873         * docs/plugins/Makefile.am:
7874         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7875         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7876           renamed to actual element names, so much nicer to look at
7877         * docs/plugins/tmpl/gstmultifdsink.sgml:
7878           remove
7879         * docs/plugins/tmpl/multifdsink.sgml:
7880         * docs/plugins/tmpl/tcpserversink.sgml:
7881           add
7882         * ext/alsa/gstalsa.c:
7883         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_get_property):
7884         * ext/ogg/gstoggmux.c:
7885         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
7886         * gst/playback/gstdecodebin.c:
7887         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init):
7888         * gst/tcp/gsttcpserversink.c:
7889           various fixes and documentation additions
7890
7891 2005-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
7892
7893         * common/Makefile.am:
7894         * common/gstdoc-scangobj:
7895         * common/gtk-doc-plugins.mak:
7896         * common/gtk-doc.mak:
7897           add a custom scangobj that uses the registry
7898           add a custom gtk-doc-plugins.mak that uses it
7899           some doc build fixes
7900         * configure.ac:
7901         * docs/Makefile.am:
7902         * docs/plugins/Makefile.am:
7903         * docs/plugins/gst-plugins-base-plugins-docs.sgml:
7904         * docs/plugins/gst-plugins-base-plugins-sections.txt:
7905         * docs/plugins/gst-plugins-base-plugins.types:
7906         * docs/plugins/tmpl/gstmultifdsink.sgml:
7907           add docs for one element, multifdsink
7908         * gst/adder/gstadder.h:
7909         * gst/volume/gstvolume.h:
7910           don't privatize enum
7911         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type):
7912         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
7913         (gst_sync_method_get_type), (gst_client_status_get_type),
7914         (gst_multifdsink_class_init),
7915         (gst_multifdsink_client_queue_buffer),
7916         (gst_multifdsink_handle_client_write):
7917         * gst/tcp/gstmultifdsink.h:
7918         * gst/tcp/gsttcp.h:
7919         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
7920         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
7921         (gst_tcpclientsink_render):
7922         * gst/tcp/gsttcpclientsink.h:
7923         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
7924         (gst_tcpclientsrc_init), (gst_tcpclientsrc_create),
7925         (gst_tcpclientsrc_start):
7926         * gst/tcp/gsttcpclientsrc.h:
7927         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
7928         (gst_tcpserversrc_init), (gst_tcpserversrc_create):
7929         * gst/tcp/gsttcpserversrc.h:
7930         * gst/typefind/gsttypefindfunctions.c:
7931           remove superfluous Type stuff
7932
7933 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7934
7935         * gst/playback/gstplaybin.c: (gen_video_element):
7936           Enable videoscale.
7937
7938 2005-08-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7939
7940         * gst-libs/gst/gconf/gconf.c:
7941         * gst-libs/gst/gconf/gconf.h:
7942           Fix some Andy Problem [tm].
7943
7944 2005-08-04  Andy Wingo  <wingo@pobox.com>
7945
7946         * gst/videoscale/gstvideoscale.c (gst_videoscale_get_size):
7947         * gst/ffmpegcolorspace/gstffmpegcolorspace.c
7948         (gst_ffmpegcsp_get_size): Adapt to API changes.
7949
7950         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_ip):
7951         Implement an in-place do-nothing transform.
7952
7953 2005-08-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
7954
7955         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_put),
7956         (gst_ximagesink_renegotiate_size):
7957           Do not set new window sizes yet if we prepare a new buffer size
7958           for upstream renegotiation (software scaling) at some point in the
7959           future, because this new size waqs not actually accepted yet. Once
7960           accepted, renegotiation later on will set the new sizes just fine.
7961           Fixes a videotestsrc ! queue ! videoscale ! ximagesink xoverlay
7962           embedding testcase.
7963
7964 2005-08-03  Andy Wingo  <wingo@pobox.com>
7965
7966         * sys/ximage/ximagesink.c (gst_ximagesink_renegotiate_size):
7967         (gst_ximagesink_buffer_alloc): 
7968         Protect the height, width, and desired_caps with the pool_lock.
7969         Fixes videotestsrc ! queue ! ximagesink.
7970
7971 2005-08-02  Edward Hervey  <edward@fluendo.com>
7972
7973         * gst/volume/gstvolume.c:
7974         include left from controller cleanup
7975
7976 2005-08-02  Jan Schmidt  <thaytan@mad.scientist.com>
7977         * ext/ogg/gstoggmux.c: (gst_ogg_mux_change_state):
7978           Stop collectpads before calling the parent state
7979           change function on PAUSED->READY.
7980
7981 2005-08-01  Jan Schmidt  <thaytan@mad.scientist.com>
7982         * configure.ac:
7983           When testing for X libs, use the X CFlags 
7984         * gst/adder/gstadder.c: (gst_adder_change_state):
7985           Stop the collectpads before calling parent state change function
7986           on PAUSED->READY, otherwise we deadlock deactivating pads.
7987
7988 2005-08-01  Stefan Kost  <ensonic@users.sf.net>
7989
7990         * configure.ac:
7991         * docs/libs/tmpl/gstcolorbalance.sgml:
7992         * docs/libs/tmpl/gstmixer.sgml:
7993         * examples/Makefile.am:
7994         * gst/sine/Makefile.am:
7995         * gst/sine/gstsinesrc.c: (gst_sinesrc_init), (gst_sinesrc_create),
7996         (gst_sinesrc_set_property), (plugin_init):
7997         * gst/sine/gstsinesrc.h:
7998         * gst/volume/Makefile.am:
7999         * gst/volume/gstvolume.c: (gst_volume_set_volume),
8000         (gst_volume_set_mute), (gst_volume_dispose), (gst_volume_init),
8001         (volume_process_float), (volume_process_int16),
8002         (volume_set_property), (plugin_init):
8003         * gst/volume/gstvolume.h:
8004           deactivate and remove dparams (libgstcontrol)
8005
8006 2005-07-29  Wim Taymans  <wim@fluendo.com>
8007
8008         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link_src):
8009         Convert me to BaseTransform!! help..
8010
8011 2005-07-29  Andy Wingo  <wingo@pobox.com>
8012
8013         * ext/alsa/gstalsaplugin.c (plugin_init): We are primary audio
8014         sinks.
8015
8016         * ext/alsa/gstalsasink.c (alsasink_sink_factory): Advertise our
8017         support of both endiannesses.
8018
8019 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
8020
8021         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
8022           Fix confusing debug message (s/event/query/)
8023
8024 2005-07-28  Tim-Philipp M??ller  <tim at centricular dot net>
8025
8026         * gst/videotestsrc/videotestsrc.h:
8027           Use "_stdint.h" instead of <stdint.h>
8028
8029 2005-07-27  Wim Taymans  <wim@fluendo.com>
8030
8031         * ext/vorbis/Makefile.am:
8032         Revert wrong commit.
8033
8034 2005-07-27  Wim Taymans  <wim@fluendo.com>
8035
8036         * gst-libs/gst/audio/gstbaseaudiosrc.c: (gst_base_audio_src_event):
8037         More compilation fixen.
8038
8039 2005-07-27  Wim Taymans  <wim@fluendo.com>
8040
8041         * gst-libs/gst/audio/gstbaseaudiosink.c:
8042         (gst_base_audio_sink_event), (gst_base_audio_sink_render),
8043         (gst_base_audio_sink_create_ringbuffer),
8044         (gst_base_audio_sink_change_state):
8045         Fix compilation.
8046
8047 2005-07-27  Wim Taymans  <wim@fluendo.com>
8048
8049         * examples/seeking/seek.c: (setup_dynamic_link),
8050         (make_dv_pipeline), (make_vorbis_theora_pipeline), (query_rates),
8051         (query_positions_elems), (query_positions_pads), (do_seek):
8052         Update seek example.
8053
8054         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
8055         (gst_ogg_pad_typefind), (gst_ogg_demux_chain_elem_pad),
8056         (gst_ogg_demux_queue_data), (gst_ogg_demux_chain_peer),
8057         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
8058         (gst_ogg_demux_handle_event),
8059         (gst_ogg_demux_deactivate_current_chain),
8060         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8061         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
8062         (gst_ogg_demux_chain), (gst_ogg_demux_send_event),
8063         (gst_ogg_demux_loop):
8064         * ext/ogg/gstoggmux.c: (gst_ogg_mux_collected):
8065         * ext/theora/theoradec.c: (theora_dec_src_event),
8066         (theora_dec_src_getcaps), (theora_dec_sink_event),
8067         (theora_dec_push), (theora_dec_chain):
8068         * ext/vorbis/Makefile.am:
8069         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_event),
8070         (vorbis_dec_sink_event), (vorbis_dec_push),
8071         (vorbis_handle_data_packet):
8072         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_event),
8073         (gst_vorbisenc_chain):
8074         * gst/playback/gststreaminfo.c: (cb_probe):
8075         * gst/subparse/gstsubparse.c: (gst_subparse_src_event):
8076         * gst/videorate/gstvideorate.c: (gst_videorate_event):
8077         * gst/videoscale/gstvideoscale.c:
8078         (gst_videoscale_handle_src_event):
8079         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_event):
8080         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame),
8081         (gst_ximagesink_navigation_send_event):
8082         * sys/xvimage/xvimagesink.c:
8083         (gst_xvimagesink_navigation_send_event):
8084         Various event updates and cleanups
8085
8086 2005-07-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8087
8088         * gst/videoscale/gstvideoscale.c: (gst_videoscale_prepare_images):
8089           Fix segfault for I420/YV12.
8090
8091 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8092
8093         * ext/vorbis/vorbisdec.c: (vorbis_handle_comment_packet):
8094           Report bitrate.
8095
8096 2005-07-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8097
8098         * gst/playback/gstplaybin.c: (gen_video_element),
8099         (gen_audio_element):
8100           Switch to auto*sink elements as default sinks; add volume element
8101           so that volume control in totem works.
8102
8103 2005-07-21  Wim Taymans  <wim@fluendo.com>
8104
8105         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
8106         * gst/playback/gstplaybin.c: (setup_sinks),
8107         (gst_play_bin_change_state):
8108         Refcount fix and more comments.
8109
8110 2005-07-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
8111
8112         * sys/ximage/Makefile.am:
8113         * sys/ximage/ximage.c: (plugin_init):
8114         * sys/ximage/ximagesink.c:
8115         Prepare for adding ximagesrc, rename of plugin to ximage etc.
8116         
8117
8118 2005-07-21  Wim Taymans  <wim@fluendo.com>
8119
8120         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_event),
8121         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
8122         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
8123         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
8124         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
8125         (gst_ogg_demux_init), (gst_ogg_demux_activate_chain),
8126         (gst_ogg_demux_perform_seek), (gst_ogg_demux_collect_chain_info),
8127         (gst_ogg_demux_collect_info), (gst_ogg_demux_chain),
8128         (gst_ogg_demux_send_event), (gst_ogg_demux_loop):
8129         Generate correct disconts for live chained oggs.
8130
8131         * gst-libs/gst/audio/gstbaseaudiosink.c:
8132         (gst_base_audio_sink_render),
8133         (gst_base_audio_sink_create_ringbuffer),
8134         (gst_base_audio_sink_change_state):
8135         Handle discont math correctly.
8136
8137         * gst/playback/gstplaybin.c: (add_sink):
8138         Some small debug cleanup.
8139
8140 2005-07-21  Wim Taymans  <wim@fluendo.com>
8141
8142         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init), (gst_ogg_pad_event),
8143         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
8144         (gst_ogg_demux_chain_elem_pad), (gst_ogg_demux_queue_data),
8145         (gst_ogg_demux_chain_peer), (gst_ogg_pad_submit_packet),
8146         (gst_ogg_pad_submit_page), (gst_ogg_chain_new),
8147         (gst_ogg_demux_init), (gst_ogg_demux_deactivate_current_chain),
8148         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
8149         (gst_ogg_demux_read_chain), (gst_ogg_demux_find_pad),
8150         (gst_ogg_demux_collect_chain_info), (gst_ogg_demux_collect_info),
8151         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain),
8152         (gst_ogg_demux_send_event), (gst_ogg_demux_loop),
8153         (gst_ogg_demux_change_state), (gst_ogg_print):
8154         Reorganize code to send the right disconts when in streaming
8155         mode.
8156
8157 2005-07-20  Andy Wingo  <wingo@pobox.com>
8158
8159         * gst/videoscale/vs_image.c (vs_image_scale_nearest_YUYV): Typo
8160         fix (?), fixes a seggie mcfalterson (#310894).
8161
8162 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8163
8164         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_headers),
8165         (gst_ogg_mux_set_header_on_caps):
8166         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
8167         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
8168         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
8169         * gst-libs/gst/audio/multichannel.c:
8170         (gst_audio_set_channel_positions),
8171         (gst_audio_set_structure_channel_positions_list):
8172         * gst/playback/gstdecodebin.c: (dynamic_create):
8173         * gst/playback/gstplaybasebin.c: (setup_source), (mute_group_type):
8174         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute):
8175           Fixes for API changes in core.
8176
8177 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8178
8179         * gst/playback/gstplaybasebin.c: (fill_buffer):
8180           Use _new_custom() so we can set custom message types for buffering
8181           messages.
8182
8183 2005-07-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8184
8185         * configure.ac:
8186         * gst-libs/gst/Makefile.am:
8187         * gst-libs/gst/gconf/.cvsignore:
8188         * gst-libs/gst/gconf/Makefile.am:
8189         * gst-libs/gst/gconf/test-gconf.c:
8190         * pkgconfig/Makefile.am:
8191         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
8192         * pkgconfig/gstreamer-gconf.pc.in:
8193           Remove gconf stuff, use gconf elements instead from now on.
8194
8195 2005-07-20  Wim Taymans  <wim@fluendo.com>
8196
8197         * gst-libs/gst/audio/TODO:
8198         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_init),
8199         (gst_audio_clock_get_internal_time):
8200         * gst-libs/gst/audio/gstaudioclock.h:
8201         * gst-libs/gst/audio/gstbaseaudiosink.c:
8202         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
8203         (gst_base_audio_sink_get_time), (gst_base_audio_sink_event),
8204         (gst_base_audio_sink_render),
8205         (gst_base_audio_sink_create_ringbuffer),
8206         (gst_base_audio_sink_change_state):
8207         Make sure the audio clock always returns an increasing value.
8208
8209 2005-07-19  Andy Wingo  <wingo@pobox.com>
8210
8211         * gst/videotestsrc/: Cleanups.
8212
8213 2005-07-19  Wim Taymans  <wim@fluendo.com>
8214
8215         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
8216         Better debugging.
8217
8218 2005-07-19  Wim Taymans  <wim@fluendo.com>
8219
8220         * examples/seeking/seek.c: (make_dv_pipeline),
8221         (make_vorbis_theora_pipeline), (query_rates),
8222         (query_positions_elems), (query_positions_pads), (do_seek):
8223         Make correct DV pipeline.
8224
8225 2005-07-18  Andy Wingo  <wingo@pobox.com>
8226
8227         * configure.ac (DEFAULT_AUDIOSINK, DEFAULT_AUDIOSRC): Use alsa by
8228         default. Also because it's the only thing that really works. (This
8229         is used in the GConf elements).
8230         Use AS_LIBTOOL_TAGS.
8231
8232 2005-07-18  Wim Taymans  <wim@fluendo.com>
8233
8234         * gst/playback/gstdecodebin.c: (remove_element_chain):
8235         * gst/playback/gstplaybin.c: (add_sink):
8236         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
8237         (gst_stream_info_set_mute):
8238         * gst/playback/gststreamselector.c:
8239         (gst_stream_selector_get_linked_pad),
8240         (gst_stream_selector_getcaps), (gst_stream_selector_chain):
8241         More leak and compile fixes.
8242
8243 2005-07-18  Wim Taymans  <wim@fluendo.com>
8244
8245         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
8246         (query_rates), (query_positions_elems), (query_positions_pads),
8247         (do_seek), (seek_cb), (stop_seek):
8248         Updated seek example. 
8249
8250         * gst/playback/gstdecodebin.c: (remove_element_chain), (unlinked):
8251         * gst/playback/gstplaybasebin.c: (queue_threshold_reached),
8252         (queue_out_of_data), (gen_preroll_element), (new_decoded_pad):
8253         * gst/playback/gstplaybin.c: (add_sink):
8254         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
8255         (gst_stream_info_set_mute):
8256         Some refcount leak fixes.
8257
8258 2005-07-16  Wim Taymans  <wim@fluendo.com>
8259
8260         * gst-libs/gst/audio/gstbaseaudiosink.c:
8261         (gst_base_audio_sink_render):
8262         Align samples even if we have roundoff errors in the 
8263         timestamp conversion.
8264
8265 2005-07-16  Wim Taymans  <wim@fluendo.com>
8266
8267         * docs/libs/tmpl/gstringbuffer.sgml:
8268         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
8269         (query_rates), (query_positions_elems), (query_positions_pads),
8270         (update_scale), (do_seek):
8271         Updated seek example.
8272
8273         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8274         (gst_ogg_pad_submit_page), (gst_ogg_demux_activate_chain),
8275         (gst_ogg_demux_find_chains), (gst_ogg_demux_send_event),
8276         (gst_ogg_demux_loop):
8277         Push out correct discont values.
8278
8279         * ext/theora/theoradec.c: (theora_dec_src_convert),
8280         (theora_dec_sink_convert), (theora_dec_src_getcaps),
8281         (theora_dec_sink_event), (theora_handle_type_packet),
8282         (theora_handle_header_packet), (theora_dec_push),
8283         (theora_handle_data_packet), (theora_dec_chain),
8284         (theora_dec_change_state):
8285         Better timestamping.
8286
8287         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
8288         (vorbis_dec_sink_event), (vorbis_dec_push),
8289         (vorbis_handle_data_packet), (vorbis_dec_chain):
8290         * ext/vorbis/vorbisdec.h:
8291         Better timestamping.
8292
8293         * gst-libs/gst/audio/gstbaseaudiosink.c:
8294         (gst_base_audio_sink_get_time), (gst_base_audio_sink_get_times),
8295         (gst_base_audio_sink_event), (gst_base_audio_sink_render):
8296         Handle syncing on timestamps instead of sample offsets. Make
8297         use of DISCONT values as described in design docs.
8298
8299         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8300         (gst_base_audio_src_get_time):
8301         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_acquire),
8302         (gst_ring_buffer_set_sample), (gst_ring_buffer_commit),
8303         (gst_ring_buffer_read):
8304         * gst-libs/gst/audio/gstringbuffer.h:
8305         * sys/ximage/ximagesink.c: (gst_ximagesink_get_times),
8306         (gst_ximagesink_show_frame):
8307         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_times):
8308         Correcly convert buffer timestamp to stream time.
8309
8310 2005-07-16  Wim Taymans  <wim@fluendo.com>
8311
8312         * gst/audioconvert/gstaudioconvert.c:
8313         (gst_audio_convert_get_buffer):
8314         Timestamp buffers correctly.
8315
8316         * gst/playback/gstplaybin.c: (gen_video_element):
8317         Make internal fakesink silent.
8318
8319 2005-07-15  Wim Taymans  <wim@fluendo.com>
8320
8321         * gst/ffmpegcolorspace/Makefile.am:
8322         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
8323         (gst_ffmpegcsp_caps_remove_format_info),
8324         (gst_ffmpegcsp_transform_caps), (gst_ffmpegcsp_set_caps),
8325         (gst_ffmpegcsp_get_type), (gst_ffmpegcsp_class_init),
8326         (gst_ffmpegcsp_init), (gst_ffmpegcsp_get_size),
8327         (gst_ffmpegcsp_transform_ip), (gst_ffmpegcsp_transform):
8328         Ported ffmpegcolorspace to basetransform.
8329
8330         * gst/videoscale/gstvideoscale.c: (gst_videoscale_transform):
8331         * gst/volume/gstvolume.c: (volume_transform):
8332         Ported to new API.
8333
8334 2005-07-14  Wim Taymans  <wim@fluendo.com>
8335
8336         * gst/videotestsrc/Makefile.am:
8337         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get_type),
8338         (gst_videotestsrc_class_init), (gst_videotestsrc_negotiate),
8339         (gst_videotestsrc_setcaps), (gst_videotestsrc_getcaps),
8340         (gst_videotestsrc_init), (gst_videotestsrc_event),
8341         (gst_videotestsrc_create), (gst_videotestsrc_start),
8342         (gst_videotestsrc_stop), (gst_videotestsrc_get_times),
8343         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
8344         (gst_videotestsrc_get_property):
8345         * gst/videotestsrc/gstvideotestsrc.h:
8346         Make videotestsrc a pushsrc.
8347
8348 2005-07-14  Wim Taymans  <wim@fluendo.com>
8349
8350         * gst/tcp/gstfdset.c: (gst_fdset_free):
8351         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_init),
8352         (gst_multifdsink_add), (gst_multifdsink_remove),
8353         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
8354         (gst_multifdsink_remove_client_link),
8355         (gst_multifdsink_client_queue_data),
8356         (gst_multifdsink_client_queue_caps),
8357         (gst_multifdsink_client_queue_buffer),
8358         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
8359         (gst_multifdsink_stop):
8360         * gst/tcp/gstmultifdsink.h:
8361         0.8 backporting.
8362
8363         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
8364         Also draw image when not from a pool.
8365
8366 2005-07-14  Wim Taymans  <wim@fluendo.com>
8367
8368         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
8369         (mute_stream), (silence_stream):
8370         Small debug additions.
8371
8372 2005-07-14  Wim Taymans  <wim@fluendo.com>
8373
8374         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
8375         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
8376         (gst_ogg_demux_activate_chain), (gst_ogg_demux_loop):
8377         Better error recovery, ignore unconnected pads and
8378         non-fatal errors.
8379
8380 2005-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
8381
8382         * docs/libs/tmpl/gstaudio.sgml:
8383         * docs/libs/tmpl/gstcolorbalance.sgml:
8384         * docs/libs/tmpl/gstgconf.sgml:
8385         * docs/libs/tmpl/gstmixer.sgml:
8386         * docs/libs/tmpl/gstringbuffer.sgml:
8387         * docs/libs/tmpl/gsttuner.sgml:
8388         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8389         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
8390         (gst_tcpclientsrc_class_init):
8391         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
8392         (gst_tcpserversrc_class_init):
8393         * sys/v4l/gstv4lelement.c:
8394           more autistic cleanliness in functions/names/defines
8395
8396 2005-07-13  Thomas Vander Stichele  <thomas at apestaart dot org>
8397
8398         * configure.ac:
8399           make GST_PLUGIN_LDFLAGS only be flags; GST_LIBS should be
8400           added manually to each Makefile.am so we are sure it goes
8401           *last* and doesn't add -L flags before linking in libs of our
8402           own, like, say, internal .la libs, that then accidentally pick
8403           up the installed copy.
8404         * docs/libs/Makefile.am:
8405         * ext/alsa/Makefile.am:
8406         * ext/cdparanoia/Makefile.am:
8407         * ext/gnomevfs/Makefile.am:
8408         * ext/libvisual/Makefile.am:
8409         * ext/ogg/Makefile.am:
8410         * ext/theora/Makefile.am:
8411         * ext/vorbis/Makefile.am:
8412         * gst-libs/gst/video/Makefile.am:
8413         * gst/adder/Makefile.am:
8414         * gst/audioconvert/Makefile.am:
8415         * gst/audiorate/Makefile.am:
8416         * gst/audioscale/Makefile.am:
8417         * gst/ffmpegcolorspace/Makefile.am:
8418         * gst/playback/Makefile.am:
8419         * gst/sine/Makefile.am:
8420         * gst/subparse/Makefile.am:
8421         * gst/tags/Makefile.am:
8422         * gst/tcp/Makefile.am:
8423         * gst/typefind/Makefile.am:
8424         * gst/videorate/Makefile.am:
8425         * gst/videoscale/Makefile.am:
8426         * gst/videotestsrc/Makefile.am:
8427         * gst/volume/Makefile.am:
8428         * sys/v4l/Makefile.am:
8429         * sys/ximage/Makefile.am:
8430         * sys/xvimage/Makefile.am:
8431           adapt properly to this change. This should make sure that
8432           plugins and libs properly link to the as-yet-uninstalled
8433           copies of stuff like libgstinterfaces and libgstvideo
8434
8435 2005-07-13  Andy Wingo  <wingo@pobox.com>
8436
8437         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_stop): Fix a spurious warning.
8438         (gst_v4lsrc_fixate): Fixate on format as well.
8439
8440         * sys/xvimage/xvimagesink.c (gst_xvimage_buffer_destroy) 
8441         (gst_xvimagesink_xvimage_new): Ref the xvimagesink while the
8442         buffer points to it.
8443         (gst_xvimagesink_check_xshm_calls): Don't use our xvimage buffer,
8444         rather just doing X calls ourselves. Also fixes a memleak.
8445
8446 2005-07-12  Andy Wingo  <wingo@pobox.com>
8447
8448         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_get_property) 
8449         (gst_v4lsrc_set_property, gst_v4lsrc_class_init, gst_v4lsrc_init) 
8450         (gst_v4lsrc_create): Re-add the copy-mode property, default to
8451         TRUE to avoid deadlocks if an element holds on to our buffers.
8452
8453 2005-07-11  Thomas Vander Stichele  <thomas at apestaart dot org>
8454
8455         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
8456         (gst_sinesrc_init), (gst_sinesrc_create),
8457         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
8458         (gst_sinesrc_start):
8459         * gst/sine/gstsinesrc.h:
8460           removing num-buffers property before moving it
8461
8462 2005-07-10  Thomas Vander Stichele  <thomas at apestaart dot org>
8463
8464         * configure.ac:
8465           use overridable ERROR_CFLAGS
8466         * docs/libs/gst-plugins-base-libs.types:
8467         * docs/libs/tmpl/gstringbuffer.sgml:
8468         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
8469         (gst_alsasink_class_init):
8470         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
8471         (gst_alsasrc_class_init):
8472         * gst-libs/gst/audio/audio.h:
8473         * gst-libs/gst/audio/gstaudioclock.h:
8474         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audio_filter_get_type),
8475         (gst_audio_filter_base_init), (gst_audio_filter_class_init),
8476         (gst_audio_filter_link), (gst_audio_filter_init),
8477         (gst_audio_filter_chain), (gst_audio_filter_set_property),
8478         (gst_audio_filter_get_property),
8479         (gst_audio_filter_class_add_pad_templates):
8480         * gst-libs/gst/audio/gstaudiofilter.h:
8481         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
8482         (gst_audio_filter_template_get_type),
8483         (gst_audio_filter_template_base_init),
8484         (gst_audio_filter_template_class_init),
8485         (gst_audio_filter_template_init),
8486         (gst_audio_filter_template_set_property),
8487         (gst_audio_filter_template_get_property), (plugin_init),
8488         (gst_audio_filter_template_setup),
8489         (gst_audio_filter_template_filter),
8490         (gst_audio_filter_template_filter_inplace):
8491         * gst-libs/gst/audio/gstaudiosink.c:
8492         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8493         (audioringbuffer_thread_func), (gst_audioringbuffer_acquire),
8494         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
8495         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
8496         (gst_audio_sink_base_init), (gst_audio_sink_class_init),
8497         (gst_audio_sink_init), (gst_audio_sink_create_ringbuffer):
8498         * gst-libs/gst/audio/gstaudiosink.h:
8499         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
8500         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
8501         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
8502         (gst_audioringbuffer_start), (gst_audioringbuffer_stop),
8503         (gst_audioringbuffer_delay), (gst_audio_src_base_init),
8504         (gst_audio_src_class_init), (gst_audio_src_init),
8505         (gst_audio_src_create_ringbuffer):
8506         * gst-libs/gst/audio/gstaudiosrc.h:
8507         * gst-libs/gst/audio/gstbaseaudiosink.c:
8508         (gst_base_audio_sink_base_init), (gst_base_audio_sink_class_init),
8509         (gst_base_audio_sink_init), (gst_base_audio_sink_dispose),
8510         (gst_base_audio_sink_get_clock), (gst_base_audio_sink_get_time),
8511         (gst_base_audio_sink_set_property),
8512         (gst_base_audio_sink_get_property), (gst_base_audio_sink_setcaps),
8513         (gst_base_audio_sink_get_times), (gst_base_audio_sink_event),
8514         (gst_base_audio_sink_preroll), (gst_base_audio_sink_render),
8515         (gst_base_audio_sink_create_ringbuffer),
8516         (gst_base_audio_sink_callback), (gst_base_audio_sink_change_state):
8517         * gst-libs/gst/audio/gstbaseaudiosink.h:
8518         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8519         (gst_base_audio_src_base_init), (gst_base_audio_src_class_init),
8520         (gst_base_audio_src_init), (gst_base_audio_src_get_clock),
8521         (gst_base_audio_src_get_time), (gst_base_audio_src_set_property),
8522         (gst_base_audio_src_get_property), (gst_base_audio_src_fixate),
8523         (gst_base_audio_src_setcaps), (gst_base_audio_src_get_times),
8524         (gst_base_audio_src_event), (gst_base_audio_src_create),
8525         (gst_base_audio_src_create_ringbuffer),
8526         (gst_base_audio_src_callback), (gst_base_audio_src_change_state):
8527         * gst-libs/gst/audio/gstbaseaudiosrc.h:
8528         * gst-libs/gst/audio/gstringbuffer.c: (gst_ring_buffer_get_type),
8529         (gst_ring_buffer_class_init), (gst_ring_buffer_init),
8530         (gst_ring_buffer_dispose), (gst_ring_buffer_finalize),
8531         (gst_ring_buffer_debug_spec_caps),
8532         (gst_ring_buffer_debug_spec_buff), (gst_ring_buffer_parse_caps),
8533         (gst_ring_buffer_set_callback), (gst_ring_buffer_acquire),
8534         (gst_ring_buffer_release), (gst_ring_buffer_is_acquired),
8535         (gst_ring_buffer_start), (gst_ring_buffer_pause),
8536         (gst_ring_buffer_stop), (gst_ring_buffer_delay),
8537         (gst_ring_buffer_samples_done), (gst_ring_buffer_set_sample),
8538         (wait_segment), (gst_ring_buffer_commit), (gst_ring_buffer_read),
8539         (gst_ring_buffer_prepare_read), (gst_ring_buffer_advance),
8540         (gst_ring_buffer_clear):
8541         * gst-libs/gst/audio/gstringbuffer.h:
8542         * gst-libs/gst/video/gstvideosink.c: (gst_video_sink_init),
8543         (gst_video_sink_class_init), (gst_video_sink_get_type):
8544         * gst-libs/gst/video/videosink.h:
8545         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
8546         (gst_multifdsink_class_init),
8547         (gst_multifdsink_handle_client_write),
8548         (gst_multifdsink_change_state):
8549         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
8550         (gst_tcpclientsink_setcaps):
8551         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
8552         (gst_ximagesink_getcaps), (gst_ximagesink_setcaps),
8553         (gst_ximagesink_change_state), (gst_ximagesink_show_frame),
8554         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
8555         (gst_ximagesink_send_pending_navigation),
8556         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size),
8557         (gst_ximagesink_class_init), (gst_ximagesink_get_type):
8558         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
8559         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
8560         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc),
8561         (gst_xvimagesink_send_pending_navigation),
8562         (gst_xvimagesink_navigation_send_event),
8563         (gst_xvimagesink_set_xwindow_id),
8564         (gst_xvimagesink_get_desired_size), (gst_xvimagesink_class_init),
8565         (gst_xvimagesink_get_type):
8566         more macro splitting
8567
8568 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8569
8570         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
8571           plug a memleak, allows me to import 1479 albums in one go
8572           in jamboree
8573         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
8574         (vorbis_handle_type_packet), (vorbis_dec_chain),
8575         (vorbis_dec_change_state):
8576           fix some format strings
8577
8578 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8579
8580         * docs/libs/tmpl/gstcolorbalance.sgml:
8581         * docs/libs/tmpl/gstmixer.sgml:
8582         * ext/alsa/gstalsasink.c: (gst_alsasink_class_init),
8583         (gst_alsasink_set_property), (gst_alsasink_get_property):
8584         * ext/alsa/gstalsasrc.c: (gst_alsasrc_class_init),
8585         (gst_alsasrc_set_property), (gst_alsasrc_get_property):
8586           add device property
8587
8588 2005-07-08  Thomas Vander Stichele  <thomas at apestaart dot org>
8589
8590         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
8591         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
8592         (audiocast_register_listener), (audiocast_thread_run),
8593         (gst_gnomevfssrc_send_additional_headers_callback),
8594         (gst_gnomevfssrc_received_headers_callback),
8595         (gst_gnomevfssrc_push_callbacks), (gst_gnomevfssrc_pop_callbacks),
8596         (gst_gnomevfssrc_get_icy_metadata), (gst_gnomevfssrc_create),
8597         (gst_gnomevfssrc_get_size):
8598           add/clean up debugging
8599         * gst/audiorate/gstaudiorate.c: (gst_audiorate_init):
8600           cleanups
8601
8602 2005-07-07  Andy Wingo  <wingo@pobox.com>
8603
8604         * sys/v4l/gstv4lsrc.c (gst_v4lsrc_fixate): Also fixate the
8605         framerate. Need to get a handle on when exactly this function is
8606         called, tho.
8607
8608         * sys/v4l/v4lsrc_calls.h:
8609         * sys/v4l/v4lsrc_calls.c: Remove sync-related stuff.
8610         (gst_v4lsrc_get_fps_list): Moved here from gstv4lsrc.c.
8611         (gst_v4lsrc_buffer_new): Totally derive from GstBuffer.
8612
8613         * sys/v4l/v4l_calls.h: Cast to V4lElement.
8614         * sys/v4l/v4l_calls.c: Header loc fixen, don't load mjpeg, all
8615         v4lelements are sources.
8616
8617         * sys/v4l/gstv4lxoverlay.h:
8618         * sys/v4l/gstv4lxoverlay.c:
8619         * sys/v4l/gstv4ltuner.h:
8620         * sys/v4l/gstv4ltuner.c: Header loc fixen.
8621         
8622         * sys/v4l/gstv4lsrc.h:
8623         * sys/v4l/gstv4lsrc.c: Crucial GPL update. Clean up a bit, port to
8624         PushSrc/BaseSrc. Removed most sync-related properties, videorate
8625         or something should handle that. Made a live source.
8626
8627         * sys/v4l/gstv4lelement.h:
8628         * sys/v4l/gstv4lelement.c: Derive from GstPushSrc. No more
8629         signals. Some cleanups.
8630
8631         * sys/v4l/gstv4lcolorbalance.h: Interface header update.
8632
8633         * sys/v4l/gstv4l.c: Don't register v4lelement, or the jpeg/mjpeg
8634         stuff.
8635
8636         * sys/v4l/Makefile.am: Build everything except the jpeg/mjpeg
8637         stuff.
8638
8639         * sys/Makefile.am (SUBDIRS): Hit the V4L crack pipe.
8640
8641 2005-07-07  Wim Taymans  <wim@fluendo.com>
8642
8643         * ext/theora/theoradec.c: (theora_get_query_types),
8644         (theora_dec_src_getcaps), (theora_dec_push):
8645         * ext/vorbis/vorbisdec.c: (vorbis_get_query_types):
8646         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_query_types):
8647         Remove deprecated/unused query types.
8648
8649 2005-07-06  Wim Taymans  <wim@fluendo.com>
8650
8651         * ext/alsa/Makefile.am:
8652         * ext/alsa/gstalsaplugin.c: (plugin_init):
8653         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
8654         * ext/alsa/gstalsasrc.c: (gst_alsasrc_get_type),
8655         (gst_alsasrc_dispose), (gst_alsasrc_base_init),
8656         (gst_alsasrc_class_init), (gst_alsasrc_init),
8657         (gst_alsasrc_getcaps), (set_hwparams), (set_swparams),
8658         (alsasrc_parse_spec), (gst_alsasrc_open), (gst_alsasrc_close),
8659         (xrun_recovery), (gst_alsasrc_read), (gst_alsasrc_delay),
8660         (gst_alsasrc_reset):
8661         * ext/alsa/gstalsasrc.h:
8662         * gst-libs/gst/audio/Makefile.am:
8663         * gst-libs/gst/audio/gstaudiosink.c:
8664         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
8665         (gst_audioringbuffer_start):
8666         * gst-libs/gst/audio/gstaudiosrc.c: (gst_audioringbuffer_get_type),
8667         (gst_audioringbuffer_class_init), (audioringbuffer_thread_func),
8668         (gst_audioringbuffer_init), (gst_audioringbuffer_dispose),
8669         (gst_audioringbuffer_finalize), (gst_audioringbuffer_acquire),
8670         (gst_audioringbuffer_release), (gst_audioringbuffer_start),
8671         (gst_audioringbuffer_stop), (gst_audioringbuffer_delay),
8672         (gst_audiosrc_base_init), (gst_audiosrc_class_init),
8673         (gst_audiosrc_init), (gst_audiosrc_create_ringbuffer):
8674         * gst-libs/gst/audio/gstaudiosrc.h:
8675         * gst-libs/gst/audio/gstbaseaudiosink.c:
8676         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
8677         (gst_baseaudiosink_get_time), (gst_baseaudiosink_setcaps),
8678         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render):
8679         * gst-libs/gst/audio/gstbaseaudiosrc.c:
8680         (gst_baseaudiosrc_base_init), (gst_baseaudiosrc_class_init),
8681         (gst_baseaudiosrc_init), (gst_baseaudiosrc_get_clock),
8682         (gst_baseaudiosrc_get_time), (gst_baseaudiosrc_set_property),
8683         (gst_baseaudiosrc_get_property), (gst_baseaudiosrc_fixate),
8684         (gst_baseaudiosrc_setcaps), (gst_baseaudiosrc_get_times),
8685         (gst_baseaudiosrc_event), (gst_baseaudiosrc_create),
8686         (gst_baseaudiosrc_create_ringbuffer), (gst_baseaudiosrc_callback),
8687         (gst_baseaudiosrc_change_state):
8688         * gst-libs/gst/audio/gstbaseaudiosrc.h:
8689         * gst-libs/gst/audio/gstringbuffer.c: (build_linear_format),
8690         (gst_ringbuffer_debug_spec_caps), (gst_ringbuffer_debug_spec_buff),
8691         (gst_ringbuffer_parse_caps), (gst_ringbuffer_start),
8692         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
8693         (gst_ringbuffer_samples_done), (gst_ringbuffer_set_sample),
8694         (wait_segment), (gst_ringbuffer_commit), (gst_ringbuffer_read),
8695         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance):
8696         * gst-libs/gst/audio/gstringbuffer.h:
8697         Added audiosource base classes.
8698         Ported alsasrc, still very basic.
8699
8700 2005-07-06  Wim Taymans  <wim@fluendo.com>
8701
8702         * ext/theora/theoradec.c: (theora_dec_src_getcaps),
8703         (theora_dec_push), (theora_handle_data_packet):
8704         Prepare for better timestamp fix later.
8705
8706         * gst/audioconvert/gstaudioconvert.c:
8707         List most accurate caps first
8708
8709         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_loop):
8710         Use proper pad task function.
8711
8712         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
8713         (gst_xvimagesink_show_frame):
8714         Fix deadlock when alloc failed.
8715
8716 2005-07-05  Andy Wingo  <wingo@pobox.com>
8717
8718         * ext/gnomevfs/gstgnomevfssrc.c:
8719         * gst/sine/gstsinesrc.c:
8720         * gst/tcp/gsttcpserversrc.c:
8721         * gst/tcp/gsttcpclientsrc.c: s/BASESRC/BASE_SRC/.
8722
8723         * sys/v4l/: Port from 0.8.
8724
8725         * Many files: Null if we got it....
8726
8727 2005-07-05  Andy Wingo  <wingo@pobox.com>
8728
8729         * gst/tcp/gsttcpserversink.c (gst_tcpserversink_handle_server_read): 
8730         * gst/tcp/gstmultifdsink.c (gst_multifdsink_client_queue_data):
8731         Signedness fixes.
8732
8733 2005-07-05  Wim Taymans  <wim@fluendo.com>
8734
8735         * configure.ac:
8736         * gst/tcp/Makefile.am:
8737         * gst/tcp/README:
8738         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_get_type),
8739         (gst_multifdsink_base_init), (gst_multifdsink_class_init),
8740         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
8741         (is_sync_frame), (gst_multifdsink_handle_client_write),
8742         (gst_multifdsink_render), (gst_multifdsink_start),
8743         (gst_multifdsink_stop), (gst_multifdsink_change_state):
8744         * gst/tcp/gstmultifdsink.h:
8745         * gst/tcp/gsttcp.c: (gst_tcp_host_to_ip),
8746         (gst_tcp_gdp_read_buffer), (gst_tcp_gdp_read_caps),
8747         (gst_tcp_gdp_write_buffer), (gst_tcp_gdp_write_caps):
8748         * gst/tcp/gsttcp.h:
8749         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
8750         (gst_tcpclientsink_init), (gst_tcpclientsink_setcaps),
8751         (gst_tcpclientsink_render), (gst_tcpclientsink_start),
8752         (gst_tcpclientsink_stop), (gst_tcpclientsink_change_state):
8753         * gst/tcp/gsttcpclientsink.h:
8754         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get_type),
8755         (gst_tcpclientsrc_base_init), (gst_tcpclientsrc_class_init),
8756         (gst_tcpclientsrc_init), (gst_tcpclientsrc_getcaps),
8757         (gst_tcpclientsrc_create), (gst_tcpclientsrc_start),
8758         (gst_tcpclientsrc_stop), (gst_tcpclientsrc_unlock):
8759         * gst/tcp/gsttcpclientsrc.h:
8760         * gst/tcp/gsttcpplugin.c: (plugin_init):
8761         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init):
8762         * gst/tcp/gsttcpserversink.h:
8763         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get_type),
8764         (gst_tcpserversrc_base_init), (gst_tcpserversrc_class_init),
8765         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize),
8766         (gst_tcpserversrc_create), (gst_tcpserversrc_start),
8767         (gst_tcpserversrc_stop):
8768         * gst/tcp/gsttcpserversrc.h:
8769         * gst/tcp/gsttcpsink.c:
8770         * gst/tcp/gsttcpsink.h:
8771         * gst/tcp/gsttcpsrc.c:
8772         * gst/tcp/gsttcpsrc.h:
8773         Ported tcp plugins to 0.9. 
8774         
8775
8776 2005-07-05  Andy Wingo  <wingo@pobox.com>
8777
8778         * gst/playback/gstplaybasebin.c (fill_buffer):
8779         message_new_application fixen.
8780
8781         * gst/videoscale/gstvideoscale.c (gst_videoscale_transform_caps):
8782         Style fix.
8783
8784 2005-07-04  Wim Taymans  <wim@fluendo.com>
8785
8786         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
8787         Set caps on output buffer.
8788
8789 2005-07-04  Andy Wingo  <wingo@pobox.com>
8790
8791         * ext/gnomevfs/gstgnomevfssrc.c
8792         (gst_gnomevfssrc_received_headers_callback) 
8793         (audiocast_thread_kill, audiocast_thread_run): FORTIFY fixen,
8794         hopefully.
8795
8796         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_fixate):
8797         No refcount leakage.
8798
8799         * configure.ac: Enable -Werror.
8800         
8801         * ext/theora/theoradec.c (theora_dec_src_getcaps):
8802         * gst/audioconvert/bufferframesconvert.c
8803         (buffer_frames_convert_fixate):
8804         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int)
8805         (gst_audio_convert_fixate):
8806         * gst/sine/gstsinesrc.c (gst_sinesrc_src_fixate)
8807         (gst_sinesrc_create): Fixate func changes.
8808         
8809         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
8810         (gst_ximagesink_buffer_alloc): Unused var.
8811
8812 2005-07-01  Andy Wingo  <wingo@pobox.com>
8813
8814         * ext/theora/theoradec.c (theora_dec_src_getcaps): Implement a
8815         getcaps to do explicit caps. Needs to be done in all decoders,
8816         possibly via a base class.
8817
8818         * configure.ac (GST_PLUGIN_LDFLAGS): Add videoscale.
8819
8820         * ext/ogg/gstoggdemux.c (gst_ogg_pad_typefind): No need to set
8821         caps on the sink pad, just rely on the pad template. Also, setting
8822         ANY caps on a pad is not valid because the caps are not fixed.
8823
8824         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc): Set the
8825         caps on the buffer, and get the width from the desired_caps if
8826         they're set.
8827         (gst_ximagesink_renegotiate_size): Implement via setting the
8828         desired_caps on the ximagesink.
8829         (gst_ximagesink_setcaps): Only reset the width of the player if it
8830         wasn't already set. Not sure if this is right.
8831         (gst_ximagesink_show_frame): Memcpy only for normal buffers.
8832
8833         * sys/ximage/ximagesink.h (desired_caps): New field, is the caps
8834         that the user wants. NULL unless the window has been resized.
8835
8836         * gst/volume/gstvolume.c (volume_transform): Adapt to
8837         basetransform refcount changes.
8838         
8839 2005-07-01  Andy Wingo  <wingo@pobox.com>
8840
8841         * gst/videoscale/gstvideoscale.c:
8842         * gst/videoscale/gstvideoscale.h: Clean up, port to 0.9. Derives
8843         from BaseTransform, implements a transform_caps. Removed dead code
8844         including some PAR stuff that was never reached -- should probably
8845         be added back somehow.
8846
8847 2005-07-01  Andy Wingo  <wingo@pobox.com>
8848
8849         * gst/videoscale: Merge David's work from 0.8 branch. Changes to
8850         come later.
8851
8852 2005-06-30  Thomas Vander Stichele  <thomas at apestaart dot org>
8853
8854         * configure.ac:
8855         * docs/libs/Makefile.am:
8856         * docs/libs/gst-plugins-libs.types:
8857         * ext/alsa/Makefile.am:
8858         * ext/alsa/gstalsamixer.h:
8859         * ext/alsa/gstalsamixeroptions.h:
8860         * ext/alsa/gstalsamixertrack.h:
8861         * gst-libs/gst/Makefile.am:
8862         * gst-libs/gst/colorbalance/.cvsignore:
8863         * gst-libs/gst/colorbalance/Makefile.am:
8864         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
8865         * gst-libs/gst/colorbalance/colorbalance.c:
8866         * gst-libs/gst/colorbalance/colorbalance.h:
8867         * gst-libs/gst/colorbalance/colorbalance.vcproj:
8868         * gst-libs/gst/colorbalance/colorbalancechannel.c:
8869         * gst-libs/gst/colorbalance/colorbalancechannel.h:
8870         * gst-libs/gst/interfaces/Makefile.am:
8871         * gst-libs/gst/interfaces/colorbalance.c:
8872         (gst_color_balance_class_init):
8873         * gst-libs/gst/interfaces/colorbalance.h:
8874         * gst-libs/gst/interfaces/interfaces-marshal.list:
8875         * gst-libs/gst/interfaces/mixer.c: (gst_mixer_class_init):
8876         * gst-libs/gst/interfaces/mixer.h:
8877         * gst-libs/gst/interfaces/mixeroptions.h:
8878         * gst-libs/gst/interfaces/navigation.c:
8879         * gst-libs/gst/interfaces/tuner.c: (gst_tuner_class_init):
8880         * gst-libs/gst/interfaces/tuner.h:
8881         * gst/volume/Makefile.am:
8882         * gst/volume/gstvolume.c:
8883         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
8884         * sys/ximage/Makefile.am:
8885         * sys/ximage/ximagesink.c:
8886         * sys/xvimage/Makefile.am:
8887         * sys/xvimage/xvimagesink.c:
8888           fold in all interfaces into an interfaces dir, preserving CVS
8889           history
8890
8891 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8892
8893         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
8894           Fix build after riff changes.
8895
8896 2005-06-30  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8897
8898         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
8899         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
8900         (gst_riff_create_video_template_caps),
8901         (gst_riff_create_audio_template_caps),
8902         (gst_riff_create_iavs_template_caps):
8903         * gst-libs/gst/riff/riff-media.h:
8904         * gst-libs/gst/riff/riff-read.h:
8905         * gst-libs/gst/riff/riff.c: (gst_riff_init):
8906           Add gst_riff_init() to initialize the debug category, instead
8907           of plugin_init(). Port riff-media.[ch] from -THREADED to HEAD.
8908
8909 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8910
8911         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init):
8912           Oops, I shouldn't apply hacks.
8913
8914 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8915
8916         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init):
8917           Remove pad_loop function which doesn't work.
8918
8919 2005-06-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
8920
8921         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_deactivate_current_chain):
8922           Send EOS when deactivating.
8923         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
8924         (check_queue), (queue_threshold_reached), (queue_out_of_data),
8925         (gen_preroll_element), (probe_triggered), (mute_stream),
8926         (silence_stream), (new_decoded_pad), (setup_substreams),
8927         (set_active_source):
8928         * gst/playback/gstplaybin.c: (gst_play_bin_get_property),
8929         (remove_sinks), (add_sink):
8930         * gst/playback/gststreaminfo.c: (cb_probe), (gst_stream_info_new):
8931           Change for new probe API.
8932
8933 2005-06-29  Wim Taymans  <wim@fluendo.com>
8934
8935         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_init):
8936         * gst-libs/gst/audio/gstbaseaudiosink.c:
8937         (gst_baseaudiosink_class_init), (gst_baseaudiosink_dispose),
8938         (gst_baseaudiosink_change_state):
8939         * gst-libs/gst/audio/gstbaseaudiosink.h:
8940         * gst-libs/gst/audio/gstringbuffer.c:
8941         (gst_ringbuffer_set_callback):
8942         Fix compilation error.
8943         Ringbuffer starts out as not running.
8944         Free our clock in dispose.
8945         When releasing the ringbuffer we need to renegotiate so
8946         clear the pad caps.
8947
8948 2005-06-29  Thomas Vander Stichele  <thomas at apestaart dot org>
8949
8950         * autogen.sh:
8951         * configure.ac:
8952         * docs/Makefile.am:
8953         * docs/libs/Makefile.am:
8954         * docs/libs/gst-plugins-libs-docs.sgml:
8955         * docs/libs/gst-plugins-libs-sections.txt:
8956         * docs/libs/gst-plugins-libs.types:
8957         * docs/libs/tmpl/gstaudio.sgml:
8958         * docs/libs/tmpl/gstcolorbalance.sgml:
8959         * docs/libs/tmpl/gstringbuffer.sgml:
8960         * gst-libs/gst/audio/gstringbuffer.c:
8961         (gst_ringbuffer_set_callback):
8962           reinstate gtk-doc docs for plugin libs
8963
8964 2005-06-28  Wim Taymans  <wim@fluendo.com>
8965
8966         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
8967         (gst_ogg_demux_init):
8968         Removed pad loop function.
8969
8970 2005-06-28  Wim Taymans  <wim@fluendo.com>
8971
8972         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
8973         If we're building a chain we are not in an error case
8974         when we queue a buffer.
8975
8976 2005-06-28  Andy Wingo  <wingo@pobox.com>
8977
8978         * *.c: Don't cast to GstObject before reffing/unreffing.
8979
8980 2005-06-27  Andy Wingo  <wingo@pobox.com>
8981
8982         * gst/videotestsrc/gstvideotestsrc.c
8983         (gst_videotestsrc_activate_push): Activation API changes.
8984
8985         * gst/playback/gstdecodebin.c (gst_decode_bin_change_state) 
8986         (gst_decode_bin_dispose): Free dynamics in READY->NULL, because
8987         they have refs on the decodebin.
8988
8989         * ext/ogg/gstoggdemux.c (gst_ogg_pad_class_init): Ref the right
8990         parent class.
8991         (gst_ogg_pad_typefind): Don't leak a pad ref.
8992         (gst_ogg_chain_new_stream): gst_object_unref, not g_object_unref.
8993         (gst_ogg_demux_sink_activate, gst_ogg_demux_sink_activate_push) 
8994         (gst_ogg_demux_sink_activate_pull): Changes for activation API.
8995
8996 2005-06-27  Edward Hervey  <edward@fluendo.com>
8997
8998         * ext/theora/theoradec.c: (theora_dec_change_state): 
8999         re-arranged call to parent's state change in order to avoid locks (or
9000         worse).
9001
9002 2005-06-26  Edward Hervey  <edward@fluendo.com>
9003
9004         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
9005         2nd argument of 'unknow-type' signal is a GstCaps and not a
9006         GstMiniObject
9007
9008 2005-06-25  Jan Schmidt  <thaytan@mad.scientist.com>
9009         * gst-libs/gst/audio/gstaudiosink.c: (gst_audioringbuffer_acquire):
9010           Set the worker thread's running flag to TRUE before starting the
9011           thread.
9012         * gst/playback/gstdecodebin.c: (gst_decode_bin_init):
9013           Catch a failure to add typefind to the bin.
9014
9015 2005-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
9016
9017         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
9018         (gst_sinesrc_init), (gst_sinesrc_create),
9019         (gst_sinesrc_set_property), (gst_sinesrc_get_property),
9020         (gst_sinesrc_start):
9021         * gst/sine/gstsinesrc.h:
9022           add num-buffers and timestamp-offset properties
9023         * gst/videotestsrc/gstvideotestsrc.c:
9024         (gst_videotestsrc_class_init), (gst_videotestsrc_set_property),
9025         (gst_videotestsrc_get_property):
9026           add timestamp-offset property
9027
9028 2005-06-23  Christian Schaller  <uraeus@gnome.org>
9029
9030         * configure.ac: add videorate
9031         * gst-plugins-base.spec.in: add videorate
9032
9033 2005-06-23  Wim Taymans  <wim@fluendo.com>
9034
9035         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
9036         (gst_videorate_getcaps), (gst_videorate_setcaps),
9037         (gst_videorate_event), (gst_videorate_chain):
9038         Fixed videorate, fixating an already fixated caps is not
9039         an error.
9040
9041 2005-06-23  Wim Taymans  <wim@fluendo.com>
9042
9043         * ext/ogg/README:
9044         * ext/ogg/gstoggmux.c: (gst_ogg_mux_set_header_on_caps):
9045         Buffer on caps is not boxed anymore.
9046
9047 2005-06-22  Wim Taymans  <wim@fluendo.com>
9048
9049         * ext/theora/theoraenc.c: (theora_set_header_on_caps):
9050         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
9051         Set buffers on caps as miniobjects and not as boxed.
9052
9053 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9054
9055         * configure.ac:
9056           back to HEAD
9057
9058 === release 0.9.1 ===
9059
9060 2005-06-19  Thomas Vander Stichele  <thomas at apestaart dot org>
9061
9062         * .cvsignore:
9063         * NEWS:
9064         * README:
9065         * RELEASE:
9066         * configure.ac:
9067         * po/af.po:
9068         * po/az.po:
9069         * po/cs.po:
9070         * po/en_GB.po:
9071         * po/hu.po:
9072         * po/it.po:
9073         * po/nb.po:
9074         * po/nl.po:
9075         * po/or.po:
9076         * po/sq.po:
9077         * po/sr.po:
9078         * po/sv.po:
9079         * po/uk.po:
9080         * po/vi.po:
9081           updates for release
9082
9083 2005-06-09  Andy Wingo  <wingo@pobox.com>
9084
9085         * gst-libs/gst/net/Makefile.am (lib_LTLIBRARIES): Install gstnet.
9086         
9087 2005-06-09  Andy Wingo  <wingo@pobox.com>
9088
9089         * configure.ac:
9090         * gst-libs/gst/Makefile.am:
9091         * gst-libs/gst/net/Makefile.am:
9092         Add gstnet to build.
9093
9094 2005-06-09  Andy Wingo  <wingo@pobox.com>
9095
9096         * gst-libs/gst/gconf/gconf.c:
9097         * gst/playback/test.c:
9098         * gst/playback/gstplaybin.c (gen_video_element): Ghost pad API
9099         fixes.
9100
9101         * gst/audioconvert/gstaudioconvert.c: RPAD fixes.
9102
9103         * ext/theora/theoraenc.c (theora_enc_chain): 
9104         * ext/theora/theoradec.c (theora_handle_data_packet): GCC4 fixes.
9105
9106         * ext/ogg/gstoggdemux.c (GstOggPad): Derive from GstPad, not
9107         RealPad.
9108
9109 2005-06-02  Wim Taymans  <wim@fluendo.com>
9110
9111         * gst-libs/gst/net/Makefile.am:
9112         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
9113         * pkgconfig/gstreamer-libs.pc.in:
9114         Added net stuff, version net lib.
9115
9116 2005-06-02  Wim Taymans  <wim@fluendo.com>
9117
9118         * examples/seeking/seek.c: (make_vorbis_theora_pipeline),
9119         (query_rates), (query_positions_elems), (query_positions_pads),
9120         (do_seek):
9121         Updated seek example.
9122
9123 2005-06-02  Andy Wingo  <wingo@pobox.com>
9124
9125         * pkgconfig/gstreamer-libs-uninstalled.pc.in (prefix):
9126         * pkgconfig/gstreamer-libs.pc.in (prefix): Add gst/tag to the -L
9127         list.
9128
9129         * gst/playback/gstdecodebin.c (gst_decode_bin_dispose): Don't
9130         remove the typefind, the bin dispose will do it for us. When it's
9131         removed and unreffed, the signal handler will be disconnected,
9132         too.
9133         (unlinked): It's too difficult to disconnect from unlinked
9134         handlers, as they are on pads not elements. Just punt if the pads
9135         aren't grandkids of the bin.
9136
9137 2005-06-02  Wim Taymans  <wim@fluendo.com>
9138
9139         * ext/ogg/README:
9140         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9141         (gst_ogg_demux_activate_chain), (gst_ogg_demux_clear_chains):
9142         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page):
9143         * ext/theora/theoradec.c: (theora_dec_src_query),
9144         (theora_handle_data_packet):
9145         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9146         (theora_enc_chain):
9147         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
9148         (vorbis_handle_data_packet):
9149         * gst/audioconvert/bufferframesconvert.c:
9150         (buffer_frames_convert_chain):
9151         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9152         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9153         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
9154         (gst_ffmpegcsp_chain):
9155         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
9156         (gst_videorate_getcaps), (gst_videorate_setcaps),
9157         (gst_videorate_event), (gst_videorate_chain):
9158         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_activate),
9159         (gst_videotestsrc_src_query), (gst_videotestsrc_loop):
9160         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
9161         (gst_ximagesink_setcaps), (gst_ximagesink_buffer_alloc):
9162         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9163         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
9164         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
9165         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
9166         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_alloc):
9167         Cleanups and buffer alloc.
9168
9169 2005-05-31  Wim Taymans  <wim@fluendo.com>
9170
9171         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_delay):
9172         Don't try to call the delay method when the device is not
9173         opened.
9174
9175 2005-05-31  Wim Taymans  <wim@fluendo.com>
9176
9177         * ext/alsa/gstalsasink.c: (set_hwparams), (gst_alsasink_open):
9178         Get actual segment size and buffer size after opening
9179         the device.
9180
9181 2005-05-30  Wim Taymans  <wim@fluendo.com>
9182
9183         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain),
9184         (gst_ogg_demux_perform_seek), (gst_ogg_demux_clear_chains):
9185         Also FLUSH upstream, makes the loop function exit faster.
9186         
9187         * ext/theora/theoradec.c: (theora_dec_src_query):
9188         Some more debug info in the query.
9189         
9190         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
9191         (gst_ximagesink_setcaps):
9192         Release lock on par error, better error reporting.
9193
9194 2005-05-26  Wim Taymans  <wim@fluendo.com>
9195
9196         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet),
9197         (gst_ogg_demux_activate_chain), (gst_ogg_demux_chain),
9198         (gst_ogg_demux_clear_chains), (gst_ogg_demux_change_state):
9199         Clear chains in READY
9200         Queue packets until the chain is activated.
9201
9202 2005-05-25  Wim Taymans  <wim@fluendo.com>
9203
9204         * gst-libs/gst/audio/gstaudiosink.c:
9205         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9206         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9207         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9208         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9209         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
9210         (gst_audiosink_create_ringbuffer):
9211         * gst-libs/gst/audio/gstbaseaudiosink.c:
9212         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
9213         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
9214         (gst_baseaudiosink_set_property), (build_linear_format),
9215         (debug_spec_caps), (debug_spec_buffer),
9216         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
9217         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
9218         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
9219         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
9220         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
9221         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
9222         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
9223         (gst_ringbuffer_play), (gst_ringbuffer_pause),
9224         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
9225         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
9226         (wait_segment), (gst_ringbuffer_commit),
9227         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
9228         (gst_ringbuffer_clear):
9229         Various small cleanups.
9230
9231         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9232         (gst_audio_convert_change_state):
9233         * gst/subparse/gstsubparse.c: (gst_subparse_chain):
9234         No need to take the locks anymore.
9235
9236 2005-05-25  Wim Taymans  <wim@fluendo.com>
9237
9238         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
9239         (gst_decode_bin_dispose), (try_to_link_1), (get_our_ghost_pad),
9240         (remove_element_chain), (no_more_pads), (unlinked), (close_link),
9241         (type_found):
9242         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_dispose),
9243         (group_destroy), (group_commit), (queue_overrun),
9244         (gen_preroll_element), (no_more_pads), (preroll_unlinked),
9245         (mute_stream), (new_decoded_pad), (setup_substreams),
9246         (setup_source), (mute_group_type), (set_active_source),
9247         (gst_play_base_bin_change_state):
9248         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
9249         (gen_video_element), (gen_text_element), (gen_audio_element),
9250         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks):
9251         * gst/playback/gststreaminfo.c: (gst_stream_info_new),
9252         (gst_stream_info_dispose), (gst_stream_info_set_mute):
9253         * gst/playback/gststreamselector.c: (gst_stream_selector_chain):
9254         Some playbin cleanups mostly refcounting sloppyness.
9255
9256 2005-05-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9257
9258         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_submit_packet):
9259           Work with streaming input.
9260
9261 2005-05-25  Wim Taymans  <wim@fluendo.com>
9262
9263         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9264         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9265         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
9266         (gst_ffmpegcsp_chain), (gst_ffmpegcsp_change_state):
9267         No need to take the STREAM lock anymore.
9268
9269 2005-05-25  Wim Taymans  <wim@fluendo.com>
9270
9271         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose),
9272         (gst_ogg_pad_typefind), (gst_ogg_pad_submit_packet),
9273         (gst_ogg_chain_new_stream), (gst_ogg_demux_perform_seek),
9274         (gst_ogg_demux_chain), (gst_ogg_demux_loop),
9275         (gst_ogg_demux_sink_activate):
9276         * ext/theora/theoradec.c: (theora_dec_src_event),
9277         (theora_handle_comment_packet), (theora_dec_chain),
9278         (theora_dec_change_state):
9279         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
9280         (vorbis_handle_data_packet), (vorbis_dec_chain),
9281         (vorbis_dec_change_state):
9282         Remove STREAM locks as they are taken in core now.
9283         Never set bogus granulepos on vorbis/theora.
9284         Fix leaks in theoradec tag parsing.
9285
9286 2005-05-25  Wim Taymans  <wim@fluendo.com>
9287
9288         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_create):
9289         Fix memleaks, GST_BUFFER_DATA() is not freed.
9290
9291 2005-05-25  Wim Taymans  <wim@fluendo.com>
9292
9293         * ext/alsa/gstalsasink.c: (gst_alsasink_open):
9294         Open non-blocking, set to blocking mode afterwards to avoid
9295         lockups when audio device is busy.
9296
9297 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9298
9299         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_clear):
9300           This can't be good.
9301
9302 2005-05-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9303
9304         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
9305         (gst_audio_convert_chain), (gst_audio_convert_link_src),
9306         (gst_audio_convert_setcaps):
9307           Implement instant setup switching.
9308
9309 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9310
9311         * gst/playback/gstplaybasebin.c: (probe_triggered):
9312           Fix missing unlock.
9313         * gst/playback/gstplaybin.c: (add_sink):
9314           First add, then link (otherwise pad link fails).
9315
9316 2005-05-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9317
9318         * examples/Makefile.am:
9319         fix buildbot (make distcheck)
9320
9321 2005-05-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9322
9323         * gst/playback/gstplaybin.c: (gen_vis_element):
9324           Remove some wrong code. Doesn't work yet.
9325
9326 2005-05-19  Wim Taymans  <wim@fluendo.com>
9327
9328         * gst-libs/gst/net/Makefile.am:
9329         * gst-libs/gst/net/README:
9330         * gst-libs/gst/net/gstnetbuffer.c: (gst_netbuffer_get_type),
9331         (gst_netbuffer_class_init), (gst_netbuffer_init),
9332         (gst_netbuffer_finalize), (gst_netbuffer_copy),
9333         (gst_netbuffer_new), (gst_netaddress_set_ip4_address),
9334         (gst_netaddress_set_ip6_address), (gst_netaddress_get_net_type),
9335         (gst_netaddress_get_ip4_address), (gst_netaddress_get_ip6_address):
9336         * gst-libs/gst/net/gstnetbuffer.h:
9337         Added buffer subclass to store extra to/from addresses for
9338         network sources/sinks.
9339
9340 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9341
9342         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
9343           Don't lock an unassigned variable.
9344
9345 2005-05-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9346
9347         * gst/playback/gstplaybasebin.c: (gen_preroll_element):
9348           Increase buffer for video, decrease buffer for other media types.
9349         * gst/playback/gstplaybin.c: (gen_video_element),
9350         (gen_audio_element):
9351           Change names for debugging purposes.
9352
9353 2005-05-18  Wim Taymans  <wim@fluendo.com>
9354
9355         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9356         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9357         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_bufferalloc),
9358         (gst_ffmpegcsp_chain):
9359         Enable buffer alloc passthrough if the source and dest
9360         formats are the same.
9361
9362 2005-05-17  Wim Taymans  <wim@fluendo.com>
9363
9364         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_internal_chain),
9365         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_get_data),
9366         (gst_ogg_demux_chain_unlocked):
9367         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9368         (gst_audio_convert_caps_remove_format_info),
9369         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
9370         (gst_audio_convert_fixate), (gst_audio_convert_change_state):
9371         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9372         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9373         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_init),
9374         (gst_ffmpegcsp_bufferalloc), (gst_ffmpegcsp_chain),
9375         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
9376         (gst_ffmpegcsp_get_property):
9377         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_destroy),
9378         (gst_xvimage_buffer_finalize), (gst_xvimage_buffer_free),
9379         (gst_xvimage_buffer_class_init), (gst_xvimage_buffer_get_type),
9380         (gst_xvimagesink_check_xshm_calls), (gst_xvimagesink_xvimage_new),
9381         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_imagepool_clear),
9382         (gst_xvimagesink_setcaps), (gst_xvimagesink_change_state),
9383         (gst_xvimagesink_show_frame), (gst_xvimagesink_buffer_free),
9384         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id):
9385         Leak fixes in oggdemux.
9386         Some cleanups in audioconvert.
9387         Make passthrough work along with buffer_alloc etc.
9388         Make buffer_alloc and buffer recycling actually work in
9389         xvimagesink.
9390
9391 2005-05-17  Thomas Vander Stichele  <thomas at apestaart dot org>
9392
9393         * gst/subparse/gstsubparse.c: (parse_subrip), (parse_mpsub):
9394           make the compiler happy
9395
9396 2005-05-17  Wim Taymans  <wim@fluendo.com>
9397
9398         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
9399         * sys/xvimage/xvimagesink.c: (gst_xvimage_buffer_finalize),
9400         (gst_xvimage_buffer_init), (gst_xvimage_buffer_class_init),
9401         (gst_xvimage_buffer_get_type), (gst_xvimagesink_check_xshm_calls),
9402         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_put),
9403         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_setcaps),
9404         (gst_xvimagesink_change_state), (gst_xvimagesink_show_frame),
9405         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
9406         (gst_xvimagesink_set_xwindow_id):
9407         * sys/xvimage/xvimagesink.h:
9408         Port xvimagesink to new MiniObject.
9409
9410 2005-05-17  Wim Taymans  <wim@fluendo.com>
9411
9412         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
9413         (gst_audiofilter_chain):
9414         * gst-libs/gst/audio/gstaudiosink.c:
9415         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9416         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9417         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9418         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9419         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
9420         (gst_audiosink_create_ringbuffer):
9421         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9422         (gst_audio_convert_caps_remove_format_info),
9423         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
9424         (gst_audio_convert_fixate), (gst_audio_convert_channels):
9425         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9426         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9427         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
9428         Fix passthrough in ffmpegcolorspace.
9429         Fix memset in audiosink on wrong memory.
9430
9431 2005-05-16  David Schleef  <ds@schleef.org>
9432
9433         * gst/playback/gststreaminfo.c: (cb_probe): Port from GstData
9434         to GstMiniObject.
9435
9436 2005-05-16  David Schleef  <ds@schleef.org>
9437
9438         Port from GstData to GstMiniObject.
9439         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_dispose):
9440         * ext/ogg/gstoggmux.c: (gst_ogg_mux_buffer_from_page),
9441         (gst_ogg_mux_queue_pads), (gst_ogg_mux_set_header_on_caps),
9442         (gst_ogg_mux_collected):
9443         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
9444         * ext/theora/theoradec.c: (theora_handle_comment_packet),
9445         (theora_handle_data_packet):
9446         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
9447         (theora_set_header_on_caps), (theora_enc_chain):
9448         * ext/vorbis/vorbisdec.c: (vorbis_dec_sink_event),
9449         (vorbis_handle_comment_packet):
9450         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps):
9451         * ext/vorbis/vorbisparse.c: (vorbis_parse_set_header_on_caps):
9452         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_chain):
9453         * gst-libs/gst/tag/gstvorbistag.c: (gst_vorbis_tag_chain):
9454         * gst/audioconvert/gstaudioconvert.c:
9455         (gst_audio_convert_get_buffer):
9456         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
9457         * gst/playback/gstplaybasebin.c: (check_queue), (probe_triggered),
9458         (mute_stream), (silence_stream):
9459         * gst/playback/gstplaybin.c: (gst_play_bin_class_init):
9460         * gst/volume/gstvolume.c: (volume_transform):
9461         * sys/ximage/ximagesink.c: (gst_ximage_buffer_finalize),
9462         (gst_ximage_buffer_init), (gst_ximage_buffer_class_init),
9463         (gst_ximage_buffer_get_type), (gst_ximagesink_check_xshm_calls),
9464         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
9465         (gst_ximagesink_ximage_put), (gst_ximagesink_imagepool_clear),
9466         (gst_ximagesink_show_frame), (gst_ximagesink_buffer_free),
9467         (gst_ximagesink_buffer_alloc):
9468         * sys/ximage/ximagesink.h:
9469
9470 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9471
9472         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
9473         (fill_buffer), (check_queue), (queue_threshold_reached),
9474         (queue_out_of_data):
9475         * gst/playback/gstplaybasebin.h:
9476           Post buffer-fullness on the bus.
9477
9478 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9479
9480         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
9481         (try_to_link_1):
9482         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
9483         (group_commit), (probe_triggered), (setup_source),
9484         (gst_play_base_bin_change_state):
9485         * gst/playback/gstplaybasebin.h:
9486         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
9487         (gst_play_bin_init), (remove_sinks), (setup_sinks),
9488         (gst_play_bin_change_state):
9489           Move setup_output_pads into a virtual function, remove
9490           group-switch (no longer needed) and redirect (handled by bus
9491           now) signals.
9492
9493 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9494
9495         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
9496         (gst_play_base_bin_class_init), (gst_play_base_bin_finalize),
9497         (get_active_group), (get_building_group), (group_destroy),
9498         (group_commit), (check_queue), (queue_overrun),
9499         (queue_threshold_reached), (queue_out_of_data),
9500         (gen_preroll_element), (remove_groups), (unknown_type),
9501         (add_element_stream), (no_more_pads), (probe_triggered),
9502         (preroll_unlinked), (new_decoded_pad), (setup_subtitle),
9503         (setup_substreams), (setup_source), (finish_source),
9504         (prepare_output), (muted_group_change_state),
9505         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
9506         (gst_play_base_bin_change_state):
9507         * gst/playback/gstplaybasebin.h:
9508         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
9509         (gst_play_bin_init), (gst_play_bin_set_property),
9510         (gen_video_element), (gen_text_element), (gen_audio_element),
9511         (gen_vis_element), (remove_sinks), (add_sink), (setup_sinks),
9512         (gst_play_bin_change_state):
9513         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
9514         (cb_probe), (gst_stream_info_new), (gst_stream_info_dispose),
9515         (stream_info_change_state), (gst_stream_info_set_mute),
9516         (gst_stream_info_get_property):
9517         * gst/playback/gststreaminfo.h:
9518         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
9519         (gst_stream_selector_get_linked_pad),
9520         (gst_stream_selector_getcaps),
9521         (gst_stream_selector_get_linked_pads),
9522         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
9523         * gst/playback/gststreamselector.h:
9524           Rough port of playbin. Needs some more work, but is mostly done,
9525           and uses a few locks in important places, which should make stuff
9526           like chain-switches clean. Still uses GST_STATE() in a few places,
9527           which isn't all that good an idea, subtitles/elements disabled
9528           because no elements to test with and thus probably broken, query
9529           and event handling moved to GstBin, internal thread removed
9530           alltogether because the pipeline does that for us now. Can play
9531           Ogg/Vorbis files. Haven't tested anything else yet.
9532
9533 2005-05-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
9534
9535         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_activate_chain):
9536           Do no-more-pads (needed for autoplugging).
9537
9538 2005-05-10  Andy Wingo  <wingo@pobox.com>
9539
9540         * ext/vorbis/vorbisdec.c (vorbis_handle_comment_packet): Post a
9541         message to the bus with the tags. Still not sent downstream tho.
9542
9543         * gst/playback/gstdecodebin.c (remove_element_chain): Unref after
9544         get_parent.
9545         (remove_element_chain): Use OBJECT_PARENT instead of get_parent to
9546         avoid refcounting hassles.
9547
9548 2005-05-09  Andy Wingo  <wingo@pobox.com>
9549
9550         * gst/volume/Makefile.am:
9551         * gst/volume/demo.c
9552         * gst/volume/gstvolume.h
9553         * gst/volume/gstvolume.c: Port to 0.9 API, derive from
9554         basetransform. Probably need an audio filter base class.
9555
9556 2005-05-09  Wim Taymans  <wim@fluendo.com>
9557
9558         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sink_setcaps),
9559         (gst_vorbisenc_src_query), (gst_vorbisenc_sink_query),
9560         (gst_vorbisenc_set_header_on_caps), (gst_vorbisenc_sink_event),
9561         (gst_vorbisenc_chain):
9562         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9563         (gst_audio_convert_caps_remove_format_info),
9564         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
9565         (gst_audio_convert_fixate), (gst_audio_convert_channels):
9566         Make caps writable before writing to it.
9567         Fix negotiation in audioconvert some more.
9568
9569 2005-05-09  Wim Taymans  <wim@fluendo.com>
9570
9571         * gst/videorate/gstvideorate.c: (gst_videorate_transformcaps),
9572         (gst_videorate_getcaps), (gst_videorate_setcaps),
9573         (gst_videorate_event), (gst_videorate_chain):
9574         Better negotiation.
9575
9576 2005-05-09  Wim Taymans  <wim@fluendo.com>
9577
9578         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
9579         (gst_videorate_getcaps), (gst_videorate_setcaps),
9580         (gst_videorate_blank_data), (gst_videorate_init),
9581         (gst_videorate_event), (gst_videorate_chain),
9582         (gst_videorate_change_state):
9583         Port videorate, do a better job at negotiation while we're at
9584         it.
9585
9586 2005-05-09  Jan Schmidt  <thaytan@mad.scientist.com>
9587
9588         * configure.ac:
9589           Disable libvisual
9590
9591         * examples/Makefile.am:
9592         * gst-libs/gst/audio/Makefile.am:
9593         * gst-libs/gst/riff/Makefile.am:
9594         * gst-libs/gst/tag/Makefile.am:
9595         * gst-libs/gst/video/Makefile.am:
9596           Fixups for missing variables.
9597
9598 2005-05-09  Wim Taymans  <wim@fluendo.com>
9599
9600         * examples/seeking/seek.c: (make_theora_pipeline),
9601         (make_vorbis_theora_pipeline), (make_avi_msmpeg4v3_mp3_pipeline),
9602         (query_rates), (query_positions_elems), (query_positions_pads),
9603         (update_scale), (play_cb), (pause_cb), (stop_cb), (main):
9604         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_init),
9605         (gst_ogg_pad_query_types), (gst_ogg_pad_src_query),
9606         (gst_ogg_pad_typefind), (gst_ogg_demux_init),
9607         (gst_ogg_demux_perform_seek), (gst_ogg_demux_read_chain),
9608         (gst_ogg_demux_read_end_chain), (gst_ogg_demux_sink_activate):
9609         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
9610         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
9611         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
9612         (gst_ogg_mux_get_headers), (gst_ogg_mux_send_headers),
9613         (gst_ogg_mux_collected), (gst_ogg_mux_change_state):
9614         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_init),
9615         (gst_ogm_video_parse_init), (gst_ogm_text_parse_init),
9616         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain):
9617         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
9618         (theora_dec_src_convert), (theora_dec_sink_convert),
9619         (theora_dec_src_query), (theora_dec_sink_query),
9620         (theora_dec_src_event), (theora_dec_sink_event),
9621         (theora_handle_comment_packet), (theora_handle_type_packet),
9622         (theora_handle_header_packet), (theora_handle_data_packet),
9623         (theora_dec_chain):
9624         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
9625         (vorbis_dec_convert), (vorbis_dec_src_query),
9626         (vorbis_dec_sink_query), (vorbis_dec_src_event),
9627         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
9628         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
9629         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
9630         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_src_query),
9631         (gst_vorbisenc_sink_query), (gst_vorbisenc_init),
9632         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain):
9633         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
9634         (gst_play_bin_query):
9635         * gst/playback/test3.c: (update_scale):
9636         * gst/sine/gstsinesrc.c: (gst_sinesrc_setcaps),
9637         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start):
9638         * gst/subparse/gstsubparse.c: (gst_subparse_init):
9639         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
9640         (gst_videotestsrc_src_query):
9641         * gst/videotestsrc/videotestsrc.c: (paint_hline_I420),
9642         (paint_hline_Y41B), (paint_hline_Y42B), (paint_hline_Y800),
9643         (paint_hline_YUV9):
9644         * sys/ximage/ximagesink.c: (gst_ximagesink_show_frame):
9645         Port to new query API.
9646         Updated seek.
9647         Cleanups in x[v]imagesink
9648
9649 2005-05-09  Andy Wingo  <wingo@pobox.com>
9650
9651         * ext/alsa/gstalsasink.h:
9652         * ext/gnomevfs/gstgnomevfssrc.c:
9653         (gst_gnomevfssrc_get_icy_metadata):
9654         * ext/ogg/gstoggdemux.c (gst_ogg_demux_perform_seek)
9655         (gst_ogg_demux_read_chain, gst_ogg_demux_read_end_chain)
9656         * ext/theora/theoradec.c (theora_dec_src_query)
9657         (theora_dec_src_event, theora_dec_sink_event)
9658         (theora_handle_comment_packet, theora_handle_data_packet):
9659         * ext/theora/theoraenc.c (theora_enc_chain):
9660         * ext/vorbis/vorbisdec.c (vorbis_dec_src_event)
9661         (vorbis_dec_sink_event, vorbis_handle_comment_packet):
9662         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
9663         * gst/typefind/gsttypefindfunctions.c (mp3_type_find)
9664         (qt_type_find):
9665         * gst/videotestsrc/videotestsrc.c (paint_setup_I420)
9666         (paint_setup_YV12, paint_setup_YUY2, paint_setup_UYVY)
9667         (paint_setup_YVYU, paint_setup_IYU2, paint_setup_Y41B)
9668         (paint_setup_Y42B, paint_setup_Y800, paint_setup_IMC1)
9669         (paint_setup_IMC2, paint_setup_IMC3, paint_setup_IMC4)
9670         (paint_setup_YVU9, paint_setup_YUV9, paint_setup_xRGB8888)
9671         (paint_setup_xBGR8888, paint_setup_RGBx8888)
9672         (paint_setup_BGRx8888, paint_setup_RGB888, paint_setup_BGR888)
9673         (paint_setup_RGB565, paint_setup_xRGB1555):
9674         * gst/videotestsrc/videotestsrc.h:
9675         * sys/ximage/ximagesink.c (gst_ximagesink_buffer_alloc):
9676         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support)
9677         (gst_xvimagesink_setcaps, gst_xvimagesink_buffer_alloc):
9678         GCC4 fixes.
9679         
9680         * ext/ogg/gstoggdemux.c (gst_ogg_demux_find_chains): Use the new
9681         gst_pad_query_position. Fixes oggdemux.
9682
9683 2005-05-08  David Schleef  <ds@schleef.org>
9684
9685         * configure.ac: Require liboil.
9686         * gst/videotestsrc/gstvideotestsrc.c: Fix up liboil calls, add
9687         a few more.
9688         * gst/videotestsrc/videotestsrc.c:
9689         * gst/videotestsrc/videotestsrc.h:
9690
9691 2005-05-06  Wim Taymans  <wim@fluendo.com>
9692
9693         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9694         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9695         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
9696         Well, unreffing a buffer right before pushing it is asking
9697         for trouble..
9698
9699 2005-05-06  Christian Schaller  <uraeus@gnome.org>
9700
9701         * pkgconfig/gstreamer-libs.pc.in: add missing library calls
9702
9703 2005-05-06  Wim Taymans  <wim@fluendo.com>
9704
9705         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9706         (gst_audio_convert_caps_remove_format_info),
9707         (gst_audio_convert_getcaps), (gst_audio_convert_setcaps),
9708         (gst_audio_convert_fixate), (gst_audio_convert_channels):
9709         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
9710         (gst_ffmpegcsp_getcaps), (gst_ffmpegcsp_configure_context),
9711         (gst_ffmpegcsp_setcaps), (gst_ffmpegcsp_chain):
9712         * gst/sine/Makefile.am:
9713         * gst/sine/gstsinesrc.c: (gst_sinesrc_get_type),
9714         (gst_sinesrc_class_init), (gst_sinesrc_init),
9715         (gst_sinesrc_src_fixate), (gst_sinesrc_setcaps),
9716         (gst_sinesrc_src_query), (gst_sinesrc_create), (gst_sinesrc_start),
9717         (gst_sinesrc_update_freq):
9718         * gst/sine/gstsinesrc.h:
9719         * gst/tcp/gstmultifdsink.c:
9720         * sys/xvimage/xvimagesink.c:
9721         Fixed negotiation wrt _peer_get_caps()
9722         Some cleanups.
9723
9724
9725 2005-05-06  Wim Taymans  <wim@fluendo.com>
9726
9727         * gst-libs/gst/audio/gstaudiosink.c:
9728         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9729         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9730         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9731         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9732         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
9733         (gst_audiosink_create_ringbuffer):
9734         * gst-libs/gst/audio/gstbaseaudiosink.c:
9735         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
9736         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
9737         (gst_baseaudiosink_set_property), (build_linear_format),
9738         (debug_spec_caps), (debug_spec_buffer),
9739         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
9740         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
9741         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
9742         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
9743         * gst-libs/gst/audio/gstbaseaudiosink.h:
9744         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
9745         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
9746         (gst_ringbuffer_release), (gst_ringbuffer_is_acquired),
9747         (gst_ringbuffer_play), (gst_ringbuffer_pause),
9748         (gst_ringbuffer_stop), (gst_ringbuffer_delay),
9749         (gst_ringbuffer_played_samples), (gst_ringbuffer_set_sample),
9750         (wait_segment), (gst_ringbuffer_commit),
9751         (gst_ringbuffer_prepare_read), (gst_ringbuffer_advance),
9752         (gst_ringbuffer_clear):
9753         * gst-libs/gst/audio/gstringbuffer.h:
9754         Make the base audiosink return an error when there is no
9755         audiobuffer negotiated.
9756
9757 2005-05-06  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
9758
9759         * ext/Makefile.am:
9760         Disable cdparanoia until someone ports it!
9761
9762 2005-05-06  Wim Taymans  <wim@fluendo.com>
9763
9764         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
9765         (gst_ogg_demux_sink_activate):
9766         And revert after wingo's revert.. sigh..
9767
9768 2005-05-05  Andy Wingo  <wingo@pobox.com>
9769
9770         * gst/audiorate/gstaudiorate.c (gst_audiorate_class_init): Pacify
9771         GObject.
9772         * configure.ac: Return audiorate and subparse from the ghetto.
9773         Re-enable -Wall -Werror.
9774         * gst/subparse/gstsubparse.c:
9775         * gst/subparse/gstsubparse.h: Port to 0.9. Can operate loop-based
9776         or chain-based. Cleaned up a bit. Not tested.
9777         
9778 2005-05-05  Christian Schaller <christian@fluendo.com> 
9779
9780         * Makefile.am: remove stuff that is not building
9781         * configure.ac: remove stuff that is not building
9782         * examples/Makefile.am: remove stuff that is not building
9783         * ext/alsa/gstalsasink.c: add alsa/ before the alsalib.h file
9784         * ext/alsa/gstalsasink.h: add alsa/ before the alsalib.h file
9785         * sys/Makefile.am: remove stuff that is not building
9786         * testsuite/Makefile.am: remove stuff that is not building
9787
9788 2005-05-05  Andy Wingo  <wingo@pobox.com>
9789
9790         * gst-libs/gst/tag/gstid3tag.c: (gst_tag_list_new_from_id3v1):
9791         * gst-libs/gst/tag/gstvorbistag.c:
9792         (gst_tag_list_from_vorbiscomment_buffer), (gst_vorbis_tag_chain):
9793         * gst/adder/gstadder.h:
9794         * gst/audioconvert/gstchannelmix.c:
9795         (gst_audio_convert_fill_one_other):
9796         * gst/audiorate/gstaudiorate.c: (gst_audiorate_setcaps),
9797         (gst_audiorate_init), (gst_audiorate_chain):
9798         * gst/playback/gstplaybasebin.c: (setup_source):
9799         * gst/playback/test3.c: (update_scale):
9800         Some GCC4 fixes
9801         
9802         * po/af.po:
9803         * po/az.po:
9804         * po/cs.po:
9805         * po/en_GB.po:
9806         * po/hu.po:
9807         * po/it.po:
9808         * po/nb.po:
9809         * po/nl.po:
9810         * po/or.po:
9811         * po/sq.po:
9812         * po/sr.po:
9813         * po/sv.po:
9814         * po/uk.po:
9815         * po/vi.po: Foo
9816
9817 2005-05-05  Wim Taymans  <wim@fluendo.com>
9818
9819         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
9820         (gst_audio_convert_caps_remove_format_info),
9821         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
9822         (gst_audio_convert_change_state), (gst_audio_convert_channels):
9823         * gst/videotestsrc/gstvideotestsrc.c:
9824         (gst_videotestsrc_src_negotiate), (gst_videotestsrc_src_link),
9825         (gst_videotestsrc_parse_caps), (gst_videotestsrc_src_accept_caps),
9826         (gst_videotestsrc_setcaps), (gst_videotestsrc_activate),
9827         (gst_videotestsrc_init), (gst_videotestsrc_loop):
9828         Don't ignore _push() return values.
9829         Make sure no processing is done when shutting down.
9830         Videotestsrc pad activation fix.
9831
9832 2005-05-05  Wim Taymans  <wim@fluendo.com>
9833
9834         * gst/adder/Makefile.am:
9835         * gst/adder/gstadder.c: (gst_adder_setcaps),
9836         (gst_adder_class_init), (gst_adder_init),
9837         (gst_adder_request_new_pad), (gst_adder_collected),
9838         (gst_adder_change_state):
9839         * gst/adder/gstadder.h:
9840         Ported adder as an example of a mixer element using
9841         collect pads. Needs more negotiation work.
9842
9843 2005-05-05  Wim Taymans  <wim@fluendo.com>
9844
9845         * ext/theora/theoradec.c: (_inc_granulepos),
9846         (theora_dec_src_event), (theora_dec_sink_event),
9847         (theora_handle_comment_packet), (theora_handle_type_packet),
9848         (theora_handle_header_packet), (theora_handle_data_packet),
9849         (theora_dec_chain):
9850         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
9851         (gst_theora_enc_init), (theora_enc_sink_setcaps),
9852         (theora_push_buffer), (theora_push_packet),
9853         (theora_enc_sink_event), (theora_enc_chain),
9854         (theora_enc_change_state), (theora_enc_set_property),
9855         (theora_enc_get_property):
9856         Added stream lock to decoder so that we can serialize
9857         the discont event.
9858         More theoraenc porting, recover from errors, do clean
9859         shutdown.
9860
9861 2005-05-05  Wim Taymans  <wim@fluendo.com>
9862
9863         * ext/ogg/Makefile.am:
9864         * ext/ogg/README:
9865         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
9866         (gst_ogg_pad_submit_packet), (gst_ogg_demux_sink_activate),
9867         (gst_ogg_print):
9868         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
9869         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
9870         (gst_ogg_mux_push_page), (gst_ogg_mux_queue_pads),
9871         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
9872         (gst_ogg_mux_send_headers), (gst_ogg_mux_collected),
9873         (gst_ogg_mux_change_state):
9874         Ported ogg muxer.
9875
9876 2005-05-05  Wim Taymans  <wim@fluendo.com>
9877
9878         * docs/design-audiosinks.txt:
9879         * gst-libs/gst/audio/TODO:
9880         * gst-libs/gst/audio/gstaudiosink.c:
9881         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9882         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9883         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9884         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9885         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
9886         (gst_audiosink_create_ringbuffer):
9887         * gst-libs/gst/audio/gstbaseaudiosink.c:
9888         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
9889         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
9890         (gst_baseaudiosink_set_property), (build_linear_format),
9891         (debug_spec_caps), (debug_spec_buffer),
9892         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
9893         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
9894         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
9895         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
9896         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
9897         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
9898         (gst_ringbuffer_release), (gst_ringbuffer_play),
9899         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
9900         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
9901         (gst_ringbuffer_set_sample), (wait_segment),
9902         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
9903         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
9904         More work on the audiosink, mostly debugging and a race in
9905         shutdown.
9906
9907 2005-04-28  Wim Taymans  <wim@fluendo.com>
9908
9909         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_typefind),
9910         (gst_ogg_demux_perform_seek), (gst_ogg_demux_sink_activate):
9911         * ext/vorbis/vorbisdec.c: (vorbis_dec_convert),
9912         (vorbis_dec_src_query), (vorbis_dec_src_event),
9913         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
9914         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
9915         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain):
9916         Don't crap out when seeking back to position 0.
9917
9918 2005-04-28  Wim Taymans  <wim@fluendo.com>
9919
9920         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
9921         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
9922         (make_vorbis_pipeline), (make_vorbis_theora_pipeline),
9923         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
9924         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline):
9925         Make audio sink configurable, use alsasink as default.
9926
9927 2005-04-28  Wim Taymans  <wim@fluendo.com>
9928
9929         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
9930         (vorbis_dec_sink_event), (vorbis_handle_comment_packet),
9931         (vorbis_handle_type_packet), (vorbis_handle_header_packet),
9932         (copy_samples), (vorbis_handle_data_packet), (vorbis_dec_chain),
9933         (vorbis_dec_change_state):
9934         * ext/vorbis/vorbisdec.h:
9935         Refactor, use STREAM_LOCK.
9936
9937 2005-04-28  Wim Taymans  <wim@fluendo.com>
9938
9939         * ext/theora/theoradec.c: (_inc_granulepos),
9940         (theora_dec_sink_event), (theora_handle_comment_packet),
9941         (theora_handle_type_packet), (theora_handle_header_packet),
9942         (theora_handle_data_packet), (theora_dec_chain),
9943         (theora_dec_change_state):
9944         Refactor a bit, use STREAM_LOCK.
9945
9946 2005-04-28  Wim Taymans  <wim@fluendo.com>
9947
9948         * ext/alsa/Makefile.am:
9949         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_get_caps),
9950         (gst_alsa_fixate_to_mimetype), (gst_alsa_fixate_field_nearest_int),
9951         (gst_alsa_link), (gst_alsa_close_audio):
9952         * ext/alsa/gstalsaplugin.c: (plugin_init):
9953         * ext/alsa/gstalsasink.c: (gst_alsasink_get_type),
9954         (gst_alsasink_dispose), (gst_alsasink_base_init),
9955         (gst_alsasink_class_init), (gst_alsasink_init),
9956         (gst_alsasink_getcaps), (set_hwparams), (set_swparams),
9957         (alsasink_parse_spec), (gst_alsasink_open), (gst_alsasink_close),
9958         (xrun_recovery), (gst_alsasink_write), (gst_alsasink_delay),
9959         (gst_alsasink_reset):
9960         * ext/alsa/gstalsasink.h:
9961         Implement alsasink with simple open/write/close API. 
9962         Make alsa dir build by disabling compilation of code.
9963
9964 2005-04-28  Wim Taymans  <wim@fluendo.com>
9965
9966         * gst-libs/gst/audio/Makefile.am:
9967         * gst-libs/gst/audio/audio.h:
9968         * gst-libs/gst/audio/audioclock.c:
9969         * gst-libs/gst/audio/audioclock.h:
9970         * gst-libs/gst/audio/gstaudioclock.c: (gst_audio_clock_get_type),
9971         (gst_audio_clock_class_init), (gst_audio_clock_init),
9972         (gst_audio_clock_new), (gst_audio_clock_get_internal_time):
9973         * gst-libs/gst/audio/gstaudioclock.h:
9974         * gst-libs/gst/audio/gstaudiosink.c:
9975         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
9976         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
9977         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
9978         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
9979         (gst_audioringbuffer_delay), (gst_audiosink_class_init),
9980         (gst_audiosink_create_ringbuffer):
9981         * gst-libs/gst/audio/gstbaseaudiosink.c:
9982         (gst_baseaudiosink_class_init), (gst_baseaudiosink_init),
9983         (gst_baseaudiosink_get_clock), (gst_baseaudiosink_get_time),
9984         (gst_baseaudiosink_set_property), (gst_baseaudiosink_get_property),
9985         (build_linear_format), (debug_spec_caps), (debug_spec_buffer),
9986         (gst_baseaudiosink_setcaps), (gst_baseaudiosink_get_times),
9987         (gst_baseaudiosink_event), (gst_baseaudiosink_preroll),
9988         (gst_baseaudiosink_render), (gst_baseaudiosink_create_ringbuffer),
9989         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
9990         * gst-libs/gst/audio/gstbaseaudiosink.h:
9991         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
9992         (gst_ringbuffer_init), (gst_ringbuffer_finalize),
9993         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
9994         (gst_ringbuffer_release), (gst_ringbuffer_play),
9995         (gst_ringbuffer_pause), (gst_ringbuffer_stop),
9996         (gst_ringbuffer_delay), (gst_ringbuffer_played_samples),
9997         (gst_ringbuffer_set_sample), (wait_segment),
9998         (gst_ringbuffer_commit), (gst_ringbuffer_prepare_read),
9999         (gst_ringbuffer_advance), (gst_ringbuffer_clear):
10000         * gst-libs/gst/audio/gstringbuffer.h:
10001         Make ringbuffer faster and more simple by removing the locks
10002         in the playback thread.
10003         Add sample accurate playback based on buffer sample offsets.
10004         Make the baseaudiosink provide a clock.
10005         Parse caps in the base class.
10006         Correctly handle seeking, flushing and state changes.
10007
10008 2005-04-25  Thomas Vander Stichele  <thomas at apestaart dot org>
10009
10010         * configure.ac:
10011         * gst/audioconvert/Makefile.am:
10012         * gst/audioscale/Makefile.am:
10013           Fix part of the build.  Come on guys, autogen didn't even work :)
10014
10015 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10016
10017         * configure.ac:
10018         * gst-libs/gst/Makefile.am:
10019         * gst-libs/gst/media-info/.cvsignore:
10020         * gst-libs/gst/media-info/Makefile.am:
10021         * gst-libs/gst/media-info/README:
10022         * gst-libs/gst/media-info/media-info-priv.c:
10023         * gst-libs/gst/media-info/media-info-priv.h:
10024         * gst-libs/gst/media-info/media-info-test.c:
10025         * gst-libs/gst/media-info/media-info.c:
10026         * gst-libs/gst/media-info/media-info.h:
10027         * gst-libs/gst/media-info/media-info.vcproj:
10028         * pkgconfig/Makefile.am:
10029         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
10030         * pkgconfig/gstreamer-media-info.pc.in:
10031           Remove media-info, which is also successed by playbin (see Totem
10032           implementation).
10033
10034 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10035
10036         * configure.ac:
10037         * examples/Makefile.am:
10038         * examples/gstplay/.cvsignore:
10039         * examples/gstplay/Makefile.am:
10040         * examples/gstplay/player.c:
10041         * gst-libs/gst/Makefile.am:
10042         * gst-libs/gst/play/.cvsignore:
10043         * gst-libs/gst/play/Makefile.am:
10044         * gst-libs/gst/play/play.c:
10045         * gst-libs/gst/play/play.h:
10046         * gst-libs/gst/play/play.vcproj:
10047         * pkgconfig/Makefile.am:
10048         * pkgconfig/gstreamer-play-uninstalled.pc.in:
10049         * pkgconfig/gstreamer-play.pc.in:
10050           Remove libgstplay, playbin is now the official successor.
10051
10052 2005-04-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10053
10054         * configure.ac:
10055         * gst-libs/gst/Makefile.am:
10056         * gst-libs/gst/xwindowlistener/Makefile.am:
10057         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
10058         * gst-libs/gst/xwindowlistener/xwindowlistener.h:
10059           Remove deprecated xwindowlistener (I've moved xwindowlistening
10060           in the v4l/v4l2 plugins over to serverside).
10061
10062 2005-04-25  David Schleef  <ds@schleef.org>
10063
10064         * examples/dynparams/Makefile.am: Move demo-dparams from gst/sine
10065         to examples/dynparams.  Examples do not belong interspersed with
10066         source code.
10067         * examples/dynparams/demo-dparams.c:
10068         * gst/sine/Makefile.am:
10069         * gst/sine/demo-dparams.c:
10070
10071 2005-04-25  David Schleef  <ds@schleef.org>
10072
10073         Don't use GST_PLUGIN_LDFLAGS, because these aren't plugins.
10074         * gst-libs/gst/audio/Makefile.am:
10075         * gst-libs/gst/riff/Makefile.am:
10076         * gst-libs/gst/tag/Makefile.am:
10077         * gst-libs/gst/video/Makefile.am:
10078         * gst-libs/gst/xwindowlistener/Makefile.am:
10079
10080         Convert to 0.9 API, seems to work:
10081         * sys/ximage/Makefile.am:
10082         * sys/ximage/ximagesink.c:
10083
10084 2005-04-24  David Schleef  <ds@schleef.org>
10085
10086         Link plugins against libraries:
10087         * ext/alsa/Makefile.am:
10088         * gst/tcp/Makefile.am:
10089
10090         Remove asm code that should be in liboil
10091         * gst/videoscale/Makefile.am:
10092         * gst/videoscale/videoscale_x86_asm.s:
10093
10094         gettext wants these checked in:
10095         * po/af.po:
10096         * po/az.po:
10097         * po/cs.po:
10098         * po/en_GB.po:
10099         * po/hu.po:
10100         * po/it.po:
10101         * po/nb.po:
10102         * po/nl.po:
10103         * po/or.po:
10104         * po/sq.po:
10105         * po/sr.po:
10106         * po/sv.po:
10107         * po/uk.po:
10108         * po/vi.po:
10109
10110 2005-04-24  David Schleef  <ds@schleef.org>
10111
10112         Convert gst_main() to g_main_loop_run()
10113         * gst/playback/decodetest.c: (main):
10114         * gst/playback/test2.c: (main):
10115         * gst/playback/test3.c: (main):
10116         * gst/playback/test4.c: (main):
10117
10118         Link plugins against libraries:
10119         * ext/libvisual/Makefile.am:
10120         * sys/xvimage/Makefile.am:
10121
10122 2005-04-24  David Schleef  <ds@schleef.org>
10123
10124         * configure.ac: Remove idct and resample libs
10125         * gst-libs/gst/Makefile.am: same
10126
10127         Remove usage of gst_library_load():
10128         * ext/alsa/gstalsaplugin.c: (plugin_init):
10129         * ext/libvisual/visual.c: (plugin_init):
10130         * ext/ogg/gstogg.c: (plugin_init):
10131         * ext/theora/theora.c: (plugin_init):
10132         * ext/vorbis/vorbis.c: (plugin_init):
10133         * gst-libs/gst/audio/gstaudiofiltertemplate.c: (plugin_init):
10134         * gst/audioscale/gstaudioscale.c:
10135         * gst/adder/gstadder.c: (plugin_init):
10136         * gst/audioconvert/plugin.c: (plugin_init):
10137         * sys/ximage/ximagesink.c: (plugin_init):
10138         * sys/xvimage/xvimagesink.c: (plugin_init):
10139         * gst/tcp/gsttcpplugin.c: (plugin_init):
10140
10141         Link plugins against libraries:
10142         * ext/ogg/Makefile.am:
10143         * ext/theora/Makefile.am:
10144         * ext/vorbis/Makefile.am:
10145         * gst/audioconvert/Makefile.am:
10146
10147         Create proper libraries:
10148         * gst-libs/gst/riff/Makefile.am:
10149         * gst-libs/gst/audio/Makefile.am:
10150         * gst-libs/gst/video/Makefile.am:
10151
10152         Move resample library to audioscale plugin directory:
10153         * gst-libs/gst/resample/Makefile.am:
10154         * gst-libs/gst/resample/README:
10155         * gst-libs/gst/resample/dtof.c:
10156         * gst-libs/gst/resample/dtos.c:
10157         * gst-libs/gst/resample/functable.c:
10158         * gst-libs/gst/resample/private.h:
10159         * gst-libs/gst/resample/resample.c:
10160         * gst-libs/gst/resample/resample.h:
10161         * gst-libs/gst/resample/resample.vcproj:
10162         * gst-libs/gst/resample/test.c:
10163         * gst/audioscale/Makefile.am:
10164         * gst/audioscale/README:
10165         * gst/audioscale/dtof.c:
10166         * gst/audioscale/dtos.c:
10167         * gst/audioscale/functable.c:
10168         * gst/audioscale/private.h:
10169         * gst/audioscale/resample.c:
10170         * gst/audioscale/resample.h:
10171         * gst/audioscale/test.c:
10172
10173         Move tagedit library to gst-libs:
10174         * gst-libs/gst/tag/Makefile.am:
10175         * gst-libs/gst/tag/gstid3tag.c:
10176         * gst-libs/gst/tag/gsttagediting.c:
10177         * gst-libs/gst/tag/gsttageditingprivate.h:
10178         * gst-libs/gst/tag/gstvorbistag.c:
10179         * gst/tags/Makefile.am:
10180         * gst/tags/gstid3tag.c:
10181         * gst/tags/gstvorbistag.c:
10182
10183         Fix for core changes:
10184         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
10185         (gst_sinesrc_init), (gst_sinesrc_src_fixate), (gst_sinesrc_link),
10186         (gst_sinesrc_getrange):
10187
10188 2005-04-23  David Schleef  <ds@schleef.org>
10189
10190         * gst-libs/gst/Makefile.am: Remove idct.  It hasn't been used
10191         in gst-plugins in a long time, and properly belongs in liboil.
10192         * gst-libs/gst/idct/Makefile.am:
10193         * gst-libs/gst/idct/README:
10194         * gst-libs/gst/idct/dct.h:
10195         * gst-libs/gst/idct/doieee:
10196         * gst-libs/gst/idct/fastintidct.c:
10197         * gst-libs/gst/idct/floatidct.c:
10198         * gst-libs/gst/idct/idct.c:
10199         * gst-libs/gst/idct/idct.h:
10200         * gst-libs/gst/idct/idtc.vcproj:
10201         * gst-libs/gst/idct/ieeetest.c:
10202         * gst-libs/gst/idct/intidct.c:
10203
10204 2005-04-20  Wim Taymans  <wim@fluendo.com>
10205
10206         * docs/design-audiosinks.txt:
10207         * gst-libs/gst/audio/Makefile.am:
10208         * gst-libs/gst/audio/TODO:
10209         * gst-libs/gst/audio/gstaudiosink.c:
10210         (gst_audioringbuffer_get_type), (gst_audioringbuffer_class_init),
10211         (audioringbuffer_thread_func), (gst_audioringbuffer_init),
10212         (gst_audioringbuffer_dispose), (gst_audioringbuffer_finalize),
10213         (gst_audioringbuffer_acquire), (gst_audioringbuffer_release),
10214         (gst_audioringbuffer_play), (gst_audioringbuffer_stop),
10215         (gst_audioringbuffer_delay), (gst_audiosink_base_init),
10216         (gst_audiosink_class_init), (gst_audiosink_init),
10217         (gst_audiosink_create_ringbuffer):
10218         * gst-libs/gst/audio/gstaudiosink.h:
10219         * gst-libs/gst/audio/gstbaseaudiosink.c:
10220         (gst_baseaudiosink_base_init), (gst_baseaudiosink_class_init),
10221         (gst_baseaudiosink_init), (gst_baseaudiosink_set_property),
10222         (gst_baseaudiosink_get_property), (gst_baseaudiosink_setcaps),
10223         (gst_baseaudiosink_get_times), (gst_baseaudiosink_event),
10224         (gst_baseaudiosink_preroll), (gst_baseaudiosink_render),
10225         (gst_baseaudiosink_create_ringbuffer),
10226         (gst_baseaudiosink_callback), (gst_baseaudiosink_change_state):
10227         * gst-libs/gst/audio/gstbaseaudiosink.h:
10228         * gst-libs/gst/audio/gstringbuffer.c: (gst_ringbuffer_get_type),
10229         (gst_ringbuffer_class_init), (gst_ringbuffer_init),
10230         (gst_ringbuffer_dispose), (gst_ringbuffer_finalize),
10231         (gst_ringbuffer_set_callback), (gst_ringbuffer_acquire),
10232         (gst_ringbuffer_release), (gst_ringbuffer_play_unlocked),
10233         (gst_ringbuffer_play), (gst_ringbuffer_pause),
10234         (gst_ringbuffer_resume), (gst_ringbuffer_stop),
10235         (gst_ringbuffer_callback), (gst_ringbuffer_delay),
10236         (gst_ringbuffer_played_samples), (gst_ringbuffer_commit),
10237         (gst_ringbuffer_prepare_read), (gst_ringbuffer_clear):
10238         * gst-libs/gst/audio/gstringbuffer.h:
10239         An attempt at a set of audio base classes together with some
10240         design docs.
10241
10242 2005-04-20  Wim Taymans  <wim@fluendo.com>
10243
10244         * gst/audioconvert/Makefile.am:
10245         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
10246         (gst_audio_convert_caps_remove_format_info),
10247         (gst_audio_convert_setcaps), (gst_audio_convert_fixate),
10248         (gst_audio_convert_channels):
10249         Link against audio libs.
10250         Fix audio convert plugin.
10251
10252 2005-04-20  Wim Taymans  <wim@fluendo.com>
10253
10254         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter),
10255         (gst_ogg_demux_sink_activate):
10256         * ext/theora/theoraenc.c: (theora_enc_sink_setcaps),
10257         (theora_set_header_on_caps), (theora_enc_sink_event),
10258         (theora_enc_chain):
10259         Fix theora encoder.
10260
10261 2005-04-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10262
10263         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_factory_filter):
10264         * gst/playback/gstdecodebin.c: (find_compatibles):
10265           Work with staticpadtemplates in elementfactories.
10266
10267 2005-04-12  Wim Taymans  <wim@fluendo.com>
10268
10269         * gst/playback/README:
10270         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
10271         (compare_ranks), (print_feature), (gst_decode_bin_init),
10272         (dynamic_create), (dynamic_free), (find_compatibles),
10273         (mimetype_is_raw), (close_pad_link), (got_redirect),
10274         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
10275         (new_pad), (no_more_pads), (unlinked), (close_link), (type_found),
10276         (gst_decode_bin_change_state):
10277         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
10278         (gst_play_base_bin_init), (group_destroy), (group_commit),
10279         (check_queue), (queue_overrun), (queue_threshold_reached),
10280         (queue_out_of_data), (gen_preroll_element), (unknown_type),
10281         (new_decoded_pad), (setup_subtitle), (gen_source_element),
10282         (got_redirect), (setup_source), (play_base_eos),
10283         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
10284         (gst_play_base_bin_remove_element):
10285         * gst/playback/gstplaybasebin.h:
10286         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
10287         (gst_play_bin_init), (gst_play_bin_dispose),
10288         (gst_play_bin_set_property), (gen_video_element),
10289         (gen_text_element), (gen_audio_element), (remove_sinks),
10290         (gst_play_bin_send_event):
10291         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose),
10292         (stream_info_change_state), (gst_stream_info_set_mute):
10293         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
10294         (gst_stream_selector_get_caps), (gst_stream_selector_setcaps),
10295         (gst_stream_selector_request_new_pad), (gst_stream_selector_event),
10296         (gst_stream_selector_chain):
10297         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
10298         (main):
10299         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps),
10300         (gst_xvimagesink_setcaps), (gst_xvimagesink_get_times),
10301         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
10302         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_class_init):
10303         Raw and crude port of decodebin. 
10304         Make playbin compile.
10305
10306 2005-04-06  Wim Taymans  <wim@fluendo.com>
10307
10308         * ext/gnomevfs/Makefile.am:
10309         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
10310         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
10311         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
10312         (gst_gnomevfssrc_create), (gst_gnomevfssrc_is_seekable),
10313         (gst_gnomevfssrc_get_size), (gst_gnomevfssrc_start),
10314         (gst_gnomevfssrc_stop):
10315         * ext/ogg/Makefile.am:
10316         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_get_data),
10317         (gst_ogg_demux_find_chains), (gst_ogg_demux_sink_activate):
10318         * ext/theora/Makefile.am:
10319         * ext/theora/theoradec.c: (_inc_granulepos),
10320         (theora_dec_sink_event), (theora_dec_chain):
10321         * ext/vorbis/Makefile.am:
10322         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
10323         (vorbis_dec_sink_event), (vorbis_dec_chain):
10324         * gst-libs/gst/audio/Makefile.am:
10325         * sys/xvimage/Makefile.am:
10326         Make gnomevfssrc extend the source base class.
10327         Fix linking against libs in various plugins.
10328
10329 2005-04-06  Andy Wingo  <wingo@pobox.com>
10330
10331         * gst-libs/gst/video/Makefile.am (libgstvideo_la_LDFLAGS): Use
10332         GST_BASE_LIBS.
10333
10334         * configure.ac: Add check and AC_SUBST for libgstbase.
10335
10336 2005-03-31  Wim Taymans  <wim@fluendo.com>
10337
10338         * examples/seeking/Makefile.am:
10339         * examples/seeking/cdparanoia.c: (main):
10340         * examples/seeking/cdplayer.c: (update_scale), (stop_seek),
10341         (play_cb), (pause_cb), (stop_cb), (main):
10342         * examples/seeking/playbin.c:
10343         * examples/seeking/seek.c: (dynamic_link), (make_mod_pipeline),
10344         (make_dv_pipeline), (make_wav_pipeline), (make_flac_pipeline),
10345         (make_sid_pipeline), (make_vorbis_pipeline),
10346         (make_theora_pipeline), (make_vorbis_theora_pipeline),
10347         (make_avi_msmpeg4v3_mp3_pipeline), (make_mp3_pipeline),
10348         (make_avi_pipeline), (make_mpeg_pipeline), (make_mpegnt_pipeline),
10349         (make_playerbin_pipeline), (update_scale), (end_scrub), (do_seek),
10350         (seek_cb), (start_seek), (stop_seek), (play_cb), (pause_cb),
10351         (stop_cb), (main):
10352         * examples/seeking/spider_seek.c:
10353         * examples/seeking/vorbisfile.c:
10354         * ext/gnomevfs/Makefile.am:
10355         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
10356         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_base_init),
10357         (gst_gnomevfssrc_class_init), (gst_gnomevfssrc_init),
10358         (gst_gnomevfssrc_get_property), (gst_gnomevfssrc_get),
10359         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file),
10360         (gst_gnomevfssrc_getrange), (gst_gnomevfssrc_loop),
10361         (gst_gnomevfssrc_activate), (gst_gnomevfssrc_change_state),
10362         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
10363         * ext/ogg/README:
10364         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_get_type),
10365         (gst_ogg_pad_class_init), (gst_ogg_pad_init),
10366         (gst_ogg_pad_dispose), (gst_ogg_pad_finalize),
10367         (gst_ogg_pad_formats), (gst_ogg_pad_event_masks),
10368         (gst_ogg_pad_query_types), (gst_ogg_pad_getcaps),
10369         (gst_ogg_pad_src_convert), (gst_ogg_pad_src_query),
10370         (gst_ogg_pad_event), (gst_ogg_pad_reset),
10371         (gst_ogg_demux_factory_filter), (compare_ranks),
10372         (gst_ogg_pad_internal_chain), (gst_ogg_pad_typefind),
10373         (gst_ogg_pad_submit_packet), (gst_ogg_pad_submit_page),
10374         (gst_ogg_chain_new), (gst_ogg_chain_free),
10375         (gst_ogg_chain_new_stream), (gst_ogg_chain_get_stream),
10376         (gst_ogg_chain_has_stream), (gst_ogg_demux_base_init),
10377         (gst_ogg_demux_class_init), (gst_ogg_demux_init),
10378         (gst_ogg_demux_finalize), (gst_ogg_demux_handle_event),
10379         (gst_ogg_demux_submit_buffer), (gst_ogg_demux_seek),
10380         (gst_ogg_demux_get_data), (gst_ogg_demux_get_next_page),
10381         (gst_ogg_demux_get_prev_page),
10382         (gst_ogg_demux_deactivate_current_chain),
10383         (gst_ogg_demux_activate_chain), (gst_ogg_demux_perform_seek),
10384         (gst_ogg_demux_bisect_forward_serialno),
10385         (gst_ogg_demux_read_chain), (gst_ogg_demux_read_end_chain),
10386         (gst_ogg_demux_find_pad), (gst_ogg_demux_find_chain),
10387         (gst_ogg_demux_find_chains), (gst_ogg_demux_chain_unlocked),
10388         (gst_ogg_demux_chain), (gst_ogg_demux_send_eos),
10389         (gst_ogg_demux_loop), (gst_ogg_demux_sink_activate),
10390         (gst_ogg_demux_change_state), (gst_ogg_print):
10391         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
10392         (gst_ogg_mux_init), (gst_ogg_mux_sinkconnect),
10393         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
10394         (gst_ogg_mux_push_page), (gst_ogg_mux_send_headers),
10395         (gst_ogg_mux_loop):
10396         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
10397         * ext/theora/theoradec.c: (gst_theora_dec_init), (_inc_granulepos),
10398         (theora_dec_src_convert), (theora_dec_sink_convert),
10399         (theora_dec_src_query), (theora_dec_src_event),
10400         (theora_dec_sink_event), (theora_dec_chain),
10401         (theora_dec_change_state):
10402         * ext/theora/theoraenc.c: (gst_theora_enc_init),
10403         (theora_enc_sink_setcaps), (theora_buffer_from_packet),
10404         (theora_push_buffer), (theora_enc_sink_event), (theora_enc_chain),
10405         (theora_enc_change_state):
10406         * ext/vorbis/Makefile.am:
10407         * ext/vorbis/oggvorbisenc.c:
10408         * ext/vorbis/oggvorbisenc.h:
10409         * ext/vorbis/vorbis.c: (plugin_init):
10410         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
10411         (vorbis_dec_src_query), (vorbis_dec_src_event),
10412         (vorbis_dec_sink_event), (vorbis_dec_chain),
10413         (vorbis_dec_change_state):
10414         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
10415         (gst_vorbisenc_sink_setcaps), (gst_vorbisenc_init),
10416         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
10417         (gst_vorbisenc_sink_event), (gst_vorbisenc_chain),
10418         (gst_vorbisenc_change_state):
10419         * ext/vorbis/vorbisenc.h:
10420         * ext/vorbis/vorbisparse.c: (vorbis_parse_chain):
10421         * gst-libs/gst/audio/audioclock.c:
10422         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
10423         (gst_audiofilter_init), (gst_audiofilter_chain):
10424         * gst-libs/gst/audio/testchannels.c: (main):
10425         * gst-libs/gst/gconf/gconf.c: (gst_bin_find_unconnected_pad):
10426         * gst-libs/gst/media-info/media-info-priv.c: (gmip_reset),
10427         (gmip_find_type), (gmip_find_stream), (gmip_find_track_metadata),
10428         (gmip_find_track_streaminfo), (gmip_find_track_format):
10429         * gst-libs/gst/media-info/media-info.c:
10430         (gst_media_info_read_idler):
10431         * gst-libs/gst/play/play.c: (gst_play_get_sink_element),
10432         (gst_play_get_all_by_interface):
10433         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_chunk),
10434         (gst_riff_parse_chunk), (gst_riff_parse_file_header),
10435         (gst_riff_parse_strh), (gst_riff_parse_strf_vids),
10436         (gst_riff_parse_strf_auds), (gst_riff_parse_strf_iavs),
10437         (gst_riff_parse_info):
10438         * gst-libs/gst/riff/riff-read.h:
10439         * gst-libs/gst/riff/riff.c: (plugin_init):
10440         * gst-libs/gst/video/Makefile.am:
10441         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_init),
10442         (gst_videosink_class_init), (gst_videosink_get_type):
10443         * gst-libs/gst/video/videosink.h:
10444         * gst/audioconvert/bufferframesconvert.c:
10445         (buffer_frames_convert_init), (buffer_frames_convert_fixate),
10446         (buffer_frames_convert_setcaps), (buffer_frames_convert_chain):
10447         * gst/audioconvert/channelmixtest.c: (main):
10448         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
10449         (gst_audio_convert_chain),
10450         (gst_audio_convert_caps_remove_format_info),
10451         (gst_audio_convert_getcaps), (gst_audio_convert_parse_caps),
10452         (gst_audio_convert_setcaps), (_fixate_caps_to_int),
10453         (gst_audio_convert_fixate), (gst_audio_convert_get_buffer),
10454         (gst_audio_convert_buffer_to_default_format),
10455         (gst_audio_convert_buffer_from_default_format),
10456         (gst_audio_convert_channels):
10457         * gst/audioconvert/gstchannelmix.h:
10458         * gst/ffmpegcolorspace/avcodec.h:
10459         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
10460         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
10461         (gst_ffmpegcsp_configure_context), (gst_ffmpegcsp_setcaps),
10462         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain):
10463         * gst/tags/gstid3tag.c: (gst_tag_extract_id3v1_string):
10464         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
10465         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
10466         (mp3_type_find), (mpeg2_sys_type_find), (mpeg1_sys_type_find),
10467         (mpeg_video_type_find), (mpeg_video_stream_type_find),
10468         (dv_type_find):
10469         * gst/videotestsrc/gstvideotestsrc.c:
10470         (gst_videotestsrc_class_init), (gst_videotestsrc_src_negotiate),
10471         (gst_videotestsrc_src_link), (gst_videotestsrc_parse_caps),
10472         (gst_videotestsrc_src_accept_caps), (gst_videotestsrc_setcaps),
10473         (gst_videotestsrc_src_unlink), (gst_videotestsrc_activate),
10474         (gst_videotestsrc_change_state), (gst_videotestsrc_getcaps),
10475         (gst_videotestsrc_init), (gst_videotestsrc_src_query),
10476         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_loop):
10477         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
10478         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_fixate),
10479         (gst_xvimagesink_getcaps), (gst_xvimagesink_setcaps),
10480         (gst_xvimagesink_change_state), (gst_xvimagesink_get_times),
10481         (gst_xvimagesink_show_frame), (gst_xvimagesink_chain),
10482         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
10483         (gst_xvimagesink_navigation_send_event),
10484         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_expose),
10485         (gst_xvimagesink_set_property), (gst_xvimagesink_finalize),
10486         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
10487         * sys/xvimage/xvimagesink.h:
10488         Plugin port to 0.9, ogg/theora playback should work in the seek
10489         example now.
10490         Removed old examples.
10491         Removed old oggvorbisenc, renamed rawvorbisenc to vorbisenc as
10492         explained in 0.9 TODO doc.
10493
10494
10495 2005-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
10496
10497         * autogen.sh:
10498         * configure.ac:
10499         * ext/Makefile.am:
10500         * gst/Makefile.am:
10501         * po/POTFILES.in:
10502         * po/af.po:
10503         * po/az.po:
10504         * po/cs.po:
10505         * po/en_GB.po:
10506         * po/hu.po:
10507         * po/it.po:
10508         * po/nb.po:
10509         * po/nl.po:
10510         * po/or.po:
10511         * po/sq.po:
10512         * po/sr.po:
10513         * po/sv.po:
10514         * po/uk.po:
10515         * po/vi.po:
10516         * sys/Makefile.am:
10517         * testsuite/Makefile.am:
10518           remove a whole bunch of plugins.  This module now contains a set
10519           of free reference plugins/elements as agreed.
10520
10521 2005-02-22  Thomas Vander Stichele  <thomas at apestaart dot org>
10522
10523         * configure.ac:
10524           hunting season on 0.9 is now OPEN
10525
10526 2005-02-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10527
10528         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
10529           Kick the hell out of gcc for not warning me about a symbol conflict.
10530
10531 2005-02-22  Luca Ognibene  <luogni@tin.it>
10532
10533         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
10534
10535         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link):
10536           Don't leak caps string (fixes #168134)
10537
10538         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init),
10539         (gst_jpegenc_init), (gst_jpegenc_finalize),
10540         (gst_jpegenc_change_state):
10541           Don't leak line buffers and context struct (fixes #168133).
10542
10543 2005-02-21  Tim-Philipp M??ller  <tim at centricular dot net>
10544
10545         * configure.ac:
10546         * ext/dirac/gstdiracdec.cc:
10547         (gst_diracdec_chain):
10548           Since dirac 0.5.0 the framerate in dirac is expressed as a
10549           rational number. Fix build and up requirement to 0.5.0, and
10550           also pass parameters to gst_diracdec_link in the right order
10551           (fixes #167959).
10552
10553 2005-02-21  Maciej Katafiasz  <mathrick@freedesktop.org>
10554
10555         * ext/faad/gstfaad.c: (gst_faad_sinkconnect), (gst_faad_chain):
10556         * ext/faad/gstfaad.h:
10557         TEH LONGEST DEBUGGING SESSION EVAR is over. Fix interaction with 
10558         certain invalid muxed streams, where some packets will contain 
10559         junk after decoder data. Partially fixes #149158.
10560
10561 2005-02-21  Jan Schmidt <thaytan@mad.scientist.com>
10562         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain):
10563           Make sure we only write to writable buffers
10564
10565 2005-02-20  Tim-Philipp M??ller  <tim at centricular dot net>
10566
10567         * gst-libs/gst/riff/riff-media.c:
10568         (gst_riff_create_audio_caps_with_data):
10569           Do actually fix invalid RIFF fmt header values for alaw
10570           and mulaw audio instead of just saying so.
10571
10572         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
10573           Give gst_riff_create_audio_caps_with_data() a chance to
10574           fix up broken format header fields before extracting any
10575           parameters from the header. (fixes #167633)
10576
10577 2005-02-19  Martin Holters  <martin.holters@gmx.de>
10578
10579         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
10580
10581         * gst/audioconvert/bufferframesconvert.c:
10582         (buffer_frames_convert_link):
10583           Don't leak othercaps. (fixes #167878)
10584
10585 2005-02-19  Arwed v. Merkatz  <v.merkatz@gmx.net>
10586
10587         * configure.ac:
10588         * ext/libvisual/visual.c: (gst_visual_srclink),
10589         (gst_visual_change_state):
10590           Support libvisual 0.2.0.
10591
10592 2005-02-18  Tim-Philipp M??ller  <tim at centricular dot net>
10593
10594         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_chain):
10595         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_resync), (gst_jpegenc_chain):
10596           Use same rowstrides for I420 as used everywhere else.
10597
10598 2005-02-17  Tim-Philipp M??ller  <tim at centricular dot net>
10599
10600         * gst/avi/gstavidemux.c: (gst_avi_demux_invert):
10601           Declare variables at beginning of block and make gcc-2.95 happy
10602           (fixes # 167482, patch by Gergely Nagy).
10603           
10604         * gst/tcp/gsttcpclientsrc.c:
10605         * gst/tcp/gsttcpclientsrc.h:
10606           Move some includes into the header, so that struct sockaddr_in is
10607           defined when it should be defined on FreeBSD as well (fixes
10608           #167483).
10609           
10610         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
10611           Don't pass uninitialised values to setsockopt() here either.
10612
10613 2005-02-17  Luca Ognibene  <luogni at tin dot it>
10614
10615         Reviewed by: Tim-Philipp M??ller  <tim at centricular dot net>
10616
10617         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send):
10618           Don't pass uninitialised values to setsockopt(). (fixes #167704)
10619
10620 2005-02-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10621
10622         * gst/playback/gstplaybin.c: (add_sink):
10623           Invert bin_add/link order to workaround deadlock in opt.
10624
10625 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10626
10627         * gst/modplug/gstmodplug.cc:
10628           Add missing break causing position queries to fail.
10629
10630 2005-02-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10631
10632         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_populate):
10633           Granpos can apparently be -1, which screws up calculations...
10634
10635 2005-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
10636
10637         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
10638         (gst_ximagesink_send_pending_navigation),
10639         (gst_ximagesink_navigation_send_event), (gst_ximagesink_finalize),
10640         (gst_ximagesink_init):
10641         * sys/ximage/ximagesink.h:
10642         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
10643         (gst_xvimagesink_send_pending_navigation),
10644         (gst_xvimagesink_navigation_send_event),
10645         (gst_xvimagesink_finalize), (gst_xvimagesink_init):
10646         * sys/xvimage/xvimagesink.h:
10647           Use a mutex protected list to marshal navigation
10648           events into the stream thread from whichever thread
10649           sends them.
10650
10651 2005-02-15  Tim-Philipp M??ller  <tim at centricular dot net>
10652
10653         * gst/speed/demo-mp3.c: (time_tick_cb), (main):
10654           Display current position and track length; misc. clean-ups.
10655           
10656         * gst/speed/gstspeed.c: (speed_get_query_types), (speed_src_query),
10657         (speed_init), (speed_chain):
10658           Add query function, so that the stream length and current position
10659           get adjusted when queried (note that current position queries may
10660           still be wrong if the audio sink returns values based on buffer
10661           timestamps instead of passing on the query).
10662
10663 2005-02-13  Benjamin Otte  <otte@gnome.org>
10664
10665         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
10666         (gst_audio_convert_channels):
10667           create channel conversion matrix when linking
10668         * gst/audioconvert/.cvsignore:
10669         * gst/audioconvert/Makefile.am:
10670         * gst/audioconvert/channelmixtest.c: (main):
10671           add (ugly) test that ensures stereo <=> mono conversion works
10672           correctly
10673
10674 2005-02-13  Benjamin Otte  <otte@gnome.org>
10675
10676         * gst/audioconvert/gstchannelmix.h:
10677           include missing header file
10678         * gst/audioconvert/gstchannelmix.c:
10679         (gst_audio_convert_fill_compatible):
10680           use same sign for both channels when converting to/from compatible
10681           channel. Previously used different signs made the signals cancel
10682           each other out and appear like silence. (fixes #167269)
10683
10684 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
10685
10686         * gst/ffmpegcolorspace/avcodec.h:
10687         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
10688         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
10689         (gst_ffmpegcsp_avpicture_fill):
10690         * gst/ffmpegcolorspace/imgconvert.c:
10691           Convert to and from YV12 (fixes #156379).
10692
10693 2005-02-12  Julien MOUTTE  <julien@moutte.net>
10694
10695         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
10696         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
10697         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
10698         (gst_ximagesink_expose), (gst_ximagesink_set_property),
10699         (gst_ximagesink_finalize), (gst_ximagesink_init): Protect interface
10700         methods from chain and negotiation and vice versa (Fixes #166142).
10701         * sys/ximage/ximagesink.h: Add stream_lock.
10702         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
10703         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
10704         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10705         (gst_xvimagesink_expose): Check for xcontext before trying to link.
10706
10707 2005-02-12  Tim-Philipp M??ller  <tim at centricular dot net>
10708
10709         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_open):
10710           Don't send "Hey! You gave me a NULL pointer you naughty person" as
10711           error message when we can't open the DVD device (when dvdnav_open()
10712           fails, src->dvdnav is NULL, so dvdnav_err_to_string() will return
10713           the above). Send something more useful instead (fixes #167117).
10714
10715 2005-02-11  Julien MOUTTE  <julien@moutte.net>
10716
10717         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_put),
10718         (gst_xvimagesink_sink_link), (gst_xvimagesink_change_state),
10719         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
10720         (gst_xvimagesink_buffer_alloc), (gst_xvimagesink_set_xwindow_id),
10721         (gst_xvimagesink_expose), (gst_xvimagesink_set_property),
10722         (gst_xvimagesink_finalize), (gst_xvimagesink_init): Protect interface
10723         methods from chain and negotiation and vice versa (Fixes #166142).
10724         Fix a possible bug of images in the buffer pool being discarded because
10725         we are looking at the wrong geometry.
10726         * sys/xvimage/xvimagesink.h: Add stream_lock.
10727
10728 2005-02-11  David Schleef  <ds@schleef.org>
10729
10730         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer): Change uint to
10731         unsigned int. (fixes #167128)
10732
10733 2005-02-11  David Schleef  <ds@schleef.org>
10734
10735         * gst/librfb/Makefile.am: Testing stuff before committing is
10736           for wimps... and people with fast machines.  Fix stupid
10737           mistake.
10738
10739 2005-02-11  David Schleef  <ds@schleef.org>
10740
10741         * configure.ac: Pull in librfb from my CVS tree, because it is
10742           too small and annoying to be separate.  Move rfbsrc plugin
10743           to gst/.
10744         * ext/Makefile.am:
10745         * ext/librfb/Makefile.am:
10746         * ext/librfb/gstrfbsrc.c:
10747         * gst/librfb/Makefile.am:
10748         * gst/librfb/gstrfbsrc.c:
10749         * gst/librfb/rfb.c:
10750         * gst/librfb/rfb.h:
10751         * gst/librfb/rfbbuffer.c:
10752         * gst/librfb/rfbbuffer.h:
10753         * gst/librfb/rfbbytestream.c:
10754         * gst/librfb/rfbbytestream.h:
10755         * gst/librfb/rfbcontext.h:
10756         * gst/librfb/rfbdecoder.c:
10757         * gst/librfb/rfbdecoder.h:
10758         * gst/librfb/rfbutil.h:
10759
10760 2005-02-10  Tim-Philipp M??ller  <tim at centricular dot net>
10761
10762         * gst/speed/Makefile.am:
10763         * gst/speed/demo-mp3.c: (main):
10764         * gst/speed/filter.func:
10765         * gst/speed/gstspeed.c: (speed_link), (speed_parse_caps),
10766         (speed_class_init), (speed_init), (speed_chain_int16),
10767         (speed_chain_float32), (speed_chain), (speed_set_property),
10768         (speed_get_property), (speed_change_state):
10769         * gst/speed/gstspeed.h:
10770           Fix speed element and make it chain-based (fixes #156467),
10771           and make it handle more than one channel.
10772
10773 2005-02-10  Jan Schmidt  <thaytan@mad.scientist.com>
10774
10775         * ext/dts/gstdtsdec.c: (gst_dtsdec_init), (gst_dtsdec_channels),
10776         (gst_dtsdec_handle_event), (gst_dtsdec_handle_frame),
10777         (gst_dtsdec_chain), (gst_dtsdec_change_state):
10778         * ext/dts/gstdtsdec.h:
10779           Don't clobber the stack constructing the channels array.
10780           Make the element chain-based. DTS tracks can now be played.
10781           
10782 2005-02-09  Tim-Philipp M??ller  <tim at centricular dot net>
10783
10784         * gst-libs/gst/audio/multichannel.h:
10785         * gst-libs/gst/gconf/gconf.h:
10786         * gst-libs/gst/idct/idct.h:
10787         * gst-libs/gst/media-info/media-info-priv.h:
10788         * gst-libs/gst/play/play.h:
10789         * gst-libs/gst/resample/private.h:
10790         * gst-libs/gst/resample/resample.h:
10791         * gst-libs/gst/riff/riff-ids.h:
10792         * gst-libs/gst/video/video.h:
10793         * gst-libs/gst/video/videosink.h:
10794           Add G_BEGIN_DECLS and G_END_DECLS around headers where
10795           missing, so that they work when included from C++ code.
10796
10797 2005-02-09  David Schleef  <ds@schleef.org>
10798
10799         * testsuite/gst-lint: Check for non-statically scoped
10800           parent_class variables.  This won't be a problem once
10801           plugins are loaded with RTLD_LOCAL.
10802
10803 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10804
10805         * ext/mplex/gstmplexibitstream.cc:
10806           gcc madness.
10807
10808 2005-02-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10809
10810         * ext/ogg/gstogmparse.c:
10811         * gst/debug/gstnavigationtest.c:
10812           Die, thou faulty symbol pollutors (non-static parent_class).
10813
10814 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10815
10816         * ext/mplex/gstmplexibitstream.cc:
10817           Fix event handling (#165525).
10818
10819 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10820
10821         * ext/mikmod/gstmikmod.c:
10822         * gst/modplug/gstmodplug.cc:
10823           Add missing endianness to template (fixes #165509).
10824
10825 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10826
10827         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
10828           Fix wrong order of reading of optional bytes (#165290).
10829
10830 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10831
10832         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
10833           Implement FILLER event awareness.
10834
10835 2005-02-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10836
10837         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_convert):
10838           Fix track calculations (#166208).
10839
10840 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
10841
10842         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10843
10844         * ext/libpng/gstpngdec.c: (gst_pngdec_init), (gst_pngdec_chain):
10845         * ext/libpng/gstpngenc.c:
10846           Fix byte-order, use proper fixed caps. Fixes #164197.
10847
10848 2005-02-08  Jan Schmidt  <thaytan@mad.scientist.com>
10849
10850         * configure.ac:
10851           Add dvdlpcmdec 
10852
10853         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
10854         (free_all_buffers), (gst_mpeg2dec_alloc_buffer):
10855           Don't push buffers if the src pad isn't negotiated yet.
10856           
10857         * gst/audioconvert/gstaudioconvert.c:
10858         (gst_audio_convert_buffer_to_default_format),
10859         (gst_audio_convert_buffer_from_default_format):
10860           Add support for 24-bit width.
10861
10862         * gst/dvdlpcmdec/.cvsignore:
10863         * gst/dvdlpcmdec/Makefile.am:
10864         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_get_type),
10865         (gst_dvdlpcmdec_base_init), (gst_dvdlpcmdec_class_init),
10866         (gst_dvdlpcm_reset), (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_link),
10867         (gst_dvdlpcmdec_chain), (gst_dvdlpcmdec_change_state),
10868         (plugin_init):
10869         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
10870           New decoder for rearranging DVD LPCM into our audio/x-raw-int
10871           format. Needs support for the channels maps if someone can find 
10872           a DVD LPCM track with > 2 channels.
10873
10874         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_handle_dvd_event),
10875         (gst_dvd_demux_send_discont), (gst_dvd_demux_handle_discont),
10876         (gst_dvd_demux_get_audio_stream), (gst_dvd_demux_process_private):
10877         * gst/mpegstream/gstdvddemux.h:
10878         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
10879         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_init_stream),
10880         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_handle_src_query):
10881         * gst/mpegstream/gstmpegdemux.h:
10882         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_reset),
10883         (gst_mpeg_parse_parse_packhead), (gst_mpeg_parse_loop),
10884         (gst_mpeg_parse_get_rate), (gst_mpeg_parse_convert_src),
10885         (gst_mpeg_parse_handle_src_query),
10886         (gst_mpeg_parse_handle_src_event):
10887           Use audio/x-dvd-lpcm for LPCM output.
10888           Add DTS output.
10889
10890 2005-02-08  Gergely Nagy  <algernon@bonehunter.rulez.org>
10891
10892         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10893
10894         * gst/alpha/gstalphacolor.c: (gst_alpha_color_sink_link),
10895         (transform_rgb), (transform_bgr), (gst_alpha_color_chain):
10896           Add BGRA handling (#165736).
10897
10898 2005-02-08  Francis Labonte  <francis_labonte@hotmail.com>
10899
10900         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10901
10902         * gst/law/alaw-decode.c: (alawdec_link):
10903         * gst/law/alaw-encode.c: (alawenc_link):
10904         * gst/law/mulaw-decode.c: (mulawdec_link):
10905         * gst/law/mulaw-encode.c: (mulawenc_link):
10906           Fix caps memleaks (#166600).
10907
10908 2005-02-08  Tim-Philipp M??ller  <tim at centricular dot net>
10909
10910         * ext/tarkin/mem.h:
10911         * ext/tarkin/wavelet.h:
10912         * ext/tarkin/yuv.h:
10913         * gst/ffmpegcolorspace/avcodec.h:
10914           Include "_stdint.h" instead of <stdint.h>. Fixes build on
10915           systems that don't have stdint.h, like Solaris9 (fixes #166631).
10916
10917 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10918
10919         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state):
10920         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_clear),
10921         (gst_xvimagesink_change_state):
10922           Clear window on PAUSED->READY instead of READY->PAUSED. Stop
10923           Xv video (and thereby regenerate Xv colourkey) in clear() so
10924           that PLAY -> READY -> PLAY works (fixes #162504).
10925
10926 2005-02-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10927
10928         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_getcaps):
10929           Switch to list instead of range, since MJPEG-devices really just
10930           support decimations, not any size.
10931
10932 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
10933         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_open_decoder),
10934         (gst_mpeg2dec_reset), (free_all_buffers),
10935         (gst_mpeg2dec_alloc_buffer), (handle_sequence):
10936         * ext/mpeg2dec/gstmpeg2dec.h:
10937           The libmpeg2 user-allocated buffer management is awkward, 
10938           to say the least. Hopefully this fixes things.
10939
10940 2005-02-04  Andy Wingo  <wingo@pobox.com>
10941
10942         * gst/audioconvert/bufferframesconvert.c
10943         (buffer_frames_convert_fixate): New function, fixates to 256
10944         frames per buffer by default. (Much better than 1.)
10945         (buffer_frames_convert_init): Set the fixate function for both src
10946         and sink pad.
10947         (buffer_frames_convert_link): After success setting nonfixed caps,
10948         get the negotiated caps so we can know how many buffer-frames it
10949         will be. No idea how this worked at all before.
10950
10951 2005-02-05  Jan Schmidt  <thaytan@mad.scientist.com>
10952
10953         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
10954         (gst_mpeg2dec_close_decoder), (put_buffer), (check_buffer),
10955         (free_buffer), (free_all_buffers), (gst_mpeg2dec_alloc_buffer),
10956         (handle_sequence), (handle_picture):
10957         * ext/mpeg2dec/gstmpeg2dec.h:
10958           Rearrange buffer tracking and refcounting and refactor
10959           a little for readability. 
10960
10961 2005-02-04  Jan Schmidt  <thaytan@mad.scientist.com>
10962         * sys/v4l/gstv4l.c: (plugin_init):
10963         * sys/v4l/gstv4ljpegsrc.c: (gst_v4ljpegsrc_get_type),
10964         (gst_v4ljpegsrc_base_init), (gst_v4ljpegsrc_class_init),
10965         (gst_v4ljpegsrc_init), (gst_v4ljpegsrc_src_link),
10966         (gst_v4ljpegsrc_getcaps), (gst_v4ljpegsrc_get):
10967         * sys/v4l/gstv4ljpegsrc.h:
10968         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_open), (gst_v4lsrc_src_link):
10969         * sys/v4l/v4l_calls.h:
10970         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_palette_name),
10971         (gst_v4lsrc_get_fps):
10972         * sys/v4l/v4lsrc_calls.h:
10973           Add new v4ljpegsrc for handling the ov51x hacky "I'll give
10974           you jpeg inside rgb frames" driver.
10975           Don't error in the v4lsrc link function, just return 
10976           REFUSED.
10977
10978 2005-02-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10979
10980         * sys/qcam/gstqcamsrc.c: (gst_qcamsrc_change_state),
10981         (gst_qcamsrc_open):
10982           Use GST_ELEMENT_ERROR, not g_warning, if open failed.
10983
10984 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10985
10986         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
10987           Change caps on MJPEG-B so it doesn't interfere with MJPEG/JPEG.
10988
10989 2005-02-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
10990
10991         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_change_state):
10992           Reset negotiated state on PAUSED->READY.
10993
10994 2005-02-02  David Schleef  <ds@schleef.org>
10995
10996         * configure.ac: Put DEFAULT_AUDIOSINK in config.h and use
10997         whereever possible.  (Fixes #165997)
10998         * examples/capsfilter/capsfilter1.c: (main):
10999         * examples/dynparams/filter.c: (create_ui):
11000         * examples/seeking/cdparanoia.c: (get_track_info), (main):
11001         * examples/seeking/chained.c: (main):
11002         * examples/seeking/seek.c: (make_mod_pipeline), (make_dv_pipeline),
11003         (make_wav_pipeline), (make_flac_pipeline), (make_sid_pipeline),
11004         (make_vorbis_pipeline), (make_mp3_pipeline), (make_avi_pipeline),
11005         (make_mpeg_pipeline), (make_mpegnt_pipeline):
11006         * examples/seeking/spider_seek.c: (make_spider_pipeline):
11007         * examples/switch/switcher.c: (main):
11008         * ext/dv/demo-play.c: (main):
11009         * ext/faad/gstfaad.c: (gst_faad_change_state):
11010         * ext/mad/gstmad.c: (gst_mad_chain):
11011         * ext/smoothwave/demo-osssrc.c: (main):
11012         * gst-libs/gst/gconf/gconf.c: (gst_gconf_set_string),
11013         (gst_gconf_render_bin_from_description),
11014         (gst_gconf_get_default_audio_sink),
11015         (gst_gconf_get_default_video_sink),
11016         (gst_gconf_get_default_audio_src),
11017         (gst_gconf_get_default_video_src),
11018         (gst_gconf_get_default_visualization_element):
11019         * gst/level/demo.c: (main):
11020         * gst/level/plot.c: (main):
11021         * gst/playback/gstplaybin.c: (gen_video_element),
11022         (gen_audio_element):
11023         * gst/playback/test.c: (gen_video_element), (gen_audio_element):
11024         * gst/playondemand/demo-mp3.c: (setup_pipeline):
11025         * gst/sine/demo-dparams.c: (main):
11026         * gst/spectrum/demo-osssrc.c: (main):
11027         * gst/speed/demo-mp3.c: (main):
11028         * gst/volume/demo.c: (main):
11029         * testsuite/embed/embed.c: (main):
11030
11031 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
11032
11033         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_class_init),
11034         (gst_tcpclientsink_finalize):
11035         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
11036         (gst_tcpclientsrc_finalize):
11037         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
11038         (gst_tcpserversink_init), (gst_tcpserversink_finalize):
11039         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
11040         (gst_tcpserversrc_init), (gst_tcpserversrc_finalize):
11041           Don't leak the hostname when shutting down.
11042           In tcpserversrc, take a copy of the default hostname.
11043
11044 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11045
11046         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_iso_receive):
11047           Set caps to systemstream=TRUE.
11048
11049 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11050
11051         * testsuite/Makefile.am:
11052           Fix more OSX buildbots.
11053
11054 2005-02-02  Jan Schmidt  <thaytan@mad.scientist.com>
11055
11056         * ext/mpeg2dec/gstmpeg2dec.c:
11057           Don't send things to NULL PAD_PEERs
11058
11059         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_chain):
11060           Copy-on-write the incoming buffer.
11061
11062         * gst/mpegstream/gstdvddemux.h:
11063         * gst/mpegstream/gstmpegclock.h:
11064         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
11065         (normal_seek), (gst_mpeg_demux_handle_src_event):
11066         * gst/mpegstream/gstmpegdemux.h:
11067         * gst/mpegstream/gstmpegpacketize.h:
11068         * gst/mpegstream/gstmpegparse.c:
11069         (gst_mpeg_parse_update_streaminfo), (gst_mpeg_parse_reset),
11070         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead),
11071         (gst_mpeg_parse_loop), (gst_mpeg_parse_get_rate),
11072         (gst_mpeg_parse_convert_src), (gst_mpeg_parse_handle_src_query),
11073         (gst_mpeg_parse_handle_src_event), (gst_mpeg_parse_change_state):
11074         * gst/mpegstream/gstmpegparse.h:
11075         * gst/mpegstream/gstrfc2250enc.h:
11076           Various changes to the way time is computed that make seeking and
11077           total time estimation much better here.
11078           Use G_BEGIN/END_DECLS instead of __cplusplus
11079
11080         * gst/videocrop/gstvideocrop.c: (gst_video_crop_chain):
11081           Use gst_buffer_stamp instead of only copying the TIMESTAMP
11082
11083 2005-02-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11084
11085         * gst/subparse/gstsubparse.c:
11086           Fix OSX buildbot.
11087
11088 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
11089
11090         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
11091         (theora_enc_chain), (theora_enc_change_state):
11092         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
11093         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_chain),
11094         (gst_vorbisenc_change_state):
11095         * ext/vorbis/vorbisenc.h:
11096           Set granulepos and timestamp correctly for streams not
11097           starting at 0, taking into account the initial delay.
11098
11099 2005-01-31  Tim-Philipp M??ller  <tim at centricular dot net>
11100
11101         * gst/mpegstream/gstdvddemux.c:
11102           Add audio/x-dts to audio pad template caps
11103
11104 2005-01-30  David Schleef  <ds@schleef.org>
11105
11106         * ext/polyp/polypsink.c: (gst_polypsink_base_init),
11107         (create_context), (gst_polypsink_link): Fix silly endianness
11108         bug.  Add some debugging.  Remove float from caps; it doesn't
11109         work.  Attempt to get remote audio working.
11110
11111 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11112
11113         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):
11114           Add 3IV2 fourcc.
11115
11116 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11117
11118         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream), (swap_line),
11119         (gst_avi_demux_invert), (gst_avi_demux_process_next_entry),
11120         (gst_avi_demux_stream_data):
11121         * gst/avi/gstavidemux.h:
11122           Invert DIB images. Fixes #132341.
11123
11124 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11125
11126         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
11127         (gst_ffmpegcsp_chain):
11128           D'oh, reference the palette data, not the palette structure.
11129           Fixes color distortion in #132341.
11130
11131 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11132
11133         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
11134           PAR can be non-fixed when not provided as argument (#162626).
11135
11136 2005-01-29  David Moore  <dcm@acm.org>
11137
11138         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11139
11140         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
11141         (gst_qtdemux_loop_header):
11142           Re-apply patch from #142272 that allows non-seekable sources,
11143           re-proposed by Daniel Drake <dsd@gentoo.org>.
11144
11145 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11146
11147         * gst/rtp/gstrtpgsmenc.c: (gst_rtpgsmenc_init):
11148           Use the src template for creating the src pad (#162330).
11149
11150 2005-01-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11151
11152         * configure.ac:
11153         * ext/musepack/Makefile.am:
11154         * ext/musepack/gstmusepackdec.c: (gst_musepackdec_class_init),
11155         (gst_musepackdec_init), (gst_musepackdec_dispose),
11156         (gst_musepackdec_src_query), (gst_musepackdec_src_convert),
11157         (gst_musepack_stream_init), (gst_musepackdec_loop),
11158         (gst_musepackdec_change_state):
11159         * ext/musepack/gstmusepackdec.cpp:
11160         * ext/musepack/gstmusepackdec.h:
11161         * ext/musepack/gstmusepackreader.c: (gst_musepack_reader_peek),
11162         (gst_musepack_reader_read), (gst_musepack_reader_seek),
11163         (gst_musepack_reader_tell), (gst_musepack_reader_get_size),
11164         (gst_musepack_reader_canseek), (gst_musepack_init_reader):
11165         * ext/musepack/gstmusepackreader.cpp:
11166         * ext/musepack/gstmusepackreader.h:
11167           Update to 1.1 API (#165446).
11168
11169 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11170
11171         * ext/Makefile.am:
11172           Unbreak buildbot.
11173
11174 2005-01-28  Andy Wingo  <wingo@pobox.com>
11175
11176         * ext/dv/gstdvdec.c: Change the pixel aspect ratio of dvdec output
11177         to reflect a different dubious internet source. Add a reference
11178         and some commentary.
11179
11180 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11181
11182         * gst/playback/gststreamselector.c: (gst_stream_selector_init),
11183         (gst_stream_selector_get_caps), (gst_stream_selector_chain):
11184         * gst/playback/gststreamselector.h:
11185           Be more selective when we're redoing caps negotiation from
11186           within the chain function on a stream change.
11187
11188 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11189
11190         * configure.ac:
11191         * ext/Makefile.am:
11192         * ext/amrnb/Makefile.am:
11193         * ext/amrnb/amrnb.c: (plugin_init):
11194         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_get_type),
11195         (gst_amrnbdec_base_init), (gst_amrnbdec_class_init),
11196         (gst_amrnbdec_init), (gst_amrnbdec_link), (gst_amrnbdec_chain),
11197         (gst_amrnbdec_state_change):
11198         * ext/amrnb/amrnbdec.h:
11199         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
11200         (gst_amrnbparse_base_init), (gst_amrnbparse_class_init),
11201         (gst_amrnbparse_init), (gst_amrnbparse_formats),
11202         (gst_amrnbparse_querytypes), (gst_amrnbparse_query),
11203         (gst_amrnbparse_handle_event), (gst_amrnbparse_reserve),
11204         (gst_amrnbparse_loop), (gst_amrnbparse_state_change):
11205         * ext/amrnb/amrnbparse.h:
11206           Add support for AMR-NB (mobile phone audio format; #155163, #163286).
11207         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
11208           Add AMR-NB/-WB raw formats.
11209         * ext/alsa/gstalsa.c: (gst_alsa_link):
11210           Keep valid time when changing format.
11211         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
11212         (qtdemux_parse_trak):
11213           Add some more format-specific options (#140141, #143555, #155163).
11214
11215 2005-01-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11216
11217         * gst/matroska/matroska-demux.c:
11218         (gst_matroska_demux_parse_blockgroup):
11219           Fix logic error in timing of subtitle stream synchronization.
11220         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
11221           Add skip-chunk, which is found in kodak-camera streams.
11222
11223 2005-01-27  Thomas Vander Stichele  <thomas at apestaart dot org>
11224
11225         * po/LINGUAS:
11226         * po/vi.po:
11227           Adding Vietnamese translation (submitted by Clytie Siddall)
11228
11229 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11230
11231         * gst/playback/gstdecodebin.c: (try_to_link_1):
11232           Use realpad for signal.
11233
11234 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11235
11236         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_base_init):
11237           Fix category so decodebin picks it up.
11238
11239 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11240
11241         * ext/mad/Makefile.am:
11242         * ext/mad/gstid3demuxbin.c: (gst_id3demux_bin_get_type),
11243         (gst_id3demux_bin_base_init), (gst_id3demux_bin_class_init),
11244         (gst_id3demux_bin_init), (gst_id3demux_bin_remove_pad),
11245         (found_type), (gst_id3demux_bin_change_state):
11246         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
11247         (gst_id3_tag_init), (gst_id3_tag_handle_event),
11248         (gst_id3_tag_src_link), (gst_id3_tag_chain),
11249         (gst_id3_tag_change_state), (plugin_init):
11250         * ext/mad/gstmad.h:
11251           Add id3demuxbin (which is a simple bin consisting of id3demux
11252           and typefind), take over rank from id3demux, remove typefind
11253           code from id3demux. Makes all broken mp3s that I know of work,
11254           and thereby fixes #152688.
11255
11256 2005-01-27  Edward Hervey  <bilboed@bilboed.com>
11257
11258         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11259
11260         * ext/mad/gstmad.c: (gst_mad_src_event):
11261         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
11262           Allow seeks on audio pad, make mad forward those (#164826).
11263         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
11264           Set duration (#165335).
11265
11266 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11267
11268         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
11269         (gst_asf_demux_commit_taglist), (gst_asf_demux_process_comment),
11270         (gst_asf_demux_process_ext_content_desc),
11271         (gst_asf_demux_change_state), (gst_asf_demux_add_audio_stream),
11272         (gst_asf_demux_add_video_stream), (gst_asf_demux_setup_pad):
11273         * gst/asfdemux/gstasfdemux.h:
11274           Improve metadata display, e.g. if the metadata comes before the
11275           streams are loaded (which is perfectly valid).
11276
11277 2005-01-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11278
11279         * tools/gst-launch-ext-m.m:
11280           Fix AVI/ASF pipelines (#165340).
11281
11282 2005-01-26  Amaury Jacquot  <sxpert@esitcom.org>
11283         * ext/cairo/gsttextoverlay.c: include  string.h and strings.h to fix
11284         build failure on amd64
11285
11286 2005-01-26  Tim-Philipp M??ller  <tim at centricular dot net>
11287
11288         * ext/mad/gstid3tag.c: (mad_id3_parse_latin1_string),
11289         (mad_id3_parse_comment_frame), (gst_mad_id3_to_tag_list):
11290           Check environment variables GST_ID3V2_TAG_ENCODING,
11291           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
11292           list of character encodings to force interpretation of non-unicode
11293           strings stored in an ID3v2 tag to a particular encoding. If none
11294           is specified, try to use current locale's encoding, then fall back
11295           to ISO-8859-1 (which will always succeed). (Resolves #149274)
11296         * gst/tags/gstid3tag.c: (gst_tag_from_id3_tag),
11297         (gst_tag_extract_id3v1_string), (gst_tag_list_new_from_id3v1):
11298           Check environment variables GST_ID3V1_TAG_ENCODING,
11299           GST_ID3_TAG_ENCODING and GST_TAG_ENCODING for a colon-separated
11300           list of character encodings to use in case a string encountered
11301           in an ID3v1 tag is not valid UTF-8 already. If no encoding is
11302           specified, try to use the current locale's encoding, then fall
11303           back to ISO-8859-1 (which will always succeed).
11304
11305 2005-01-25  Benjamin Otte  <otte@gnome.org>
11306
11307         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
11308           - on half framerate, compute the rate in advance so the comparisons
11309             don't compare wrong values
11310           - don't use mad_synth/frame_mute anymore, this mirrors mad_decoder
11311             behaviour
11312           - don't use mad_header_decode anymore, mad_frame_decode does that
11313             automatically
11314           - when getting rid of consumed bytes, reset the stream's skiplen
11315           (fixes #163867)
11316
11317 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
11318
11319         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init)
11320           Use 1/2 a second for default max_discont, as PES streams from DVB
11321           seem to have larger spacings in the SCR. 
11322           Fix a typo.
11323
11324 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11325
11326         * gst/playback/gstplaybasebin.c: (group_commit):
11327           Notify delayed stream-info availability.
11328
11329 2005-01-26  Jan Schmidt  <thaytan@mad.scientist.com>
11330         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
11331         (gst_a52dec_handle_event), (gst_a52dec_chain):
11332         Add some debug output. Check that a discont has a valid
11333         time associated.
11334         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
11335         (gst_alsa_sink_loop):
11336         Ignore TAG events. A little extra debug for broken timestamps.
11337         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init), (dvdnavsrc_loop),
11338         (dvdnavsrc_change_state):
11339         Ensure we send a discont to engage the link before we send any
11340         other events.
11341         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_init),
11342         (dvdreadsrc_finalize), (_close), (_open), (_seek_title),
11343         (_seek_chapter), (seek_sector), (dvdreadsrc_get),
11344         (dvdreadsrc_uri_get_uri), (dvdreadsrc_uri_set_uri):
11345         Handle URI of the form dvd://title[,chapter[,angle]]. Currently only
11346         dvd://title works in totem because typefinding sends a seek that ends
11347         up going back to chapter 1 regardless.
11348         * ext/mpeg2dec/gstmpeg2dec.c:
11349         * ext/mpeg2dec/gstmpeg2dec.h:
11350         Output correct timestamps and handle disconts.
11351         * ext/ogg/gstoggdemux.c: (get_relative):
11352         Small guard against a null dereference.
11353         * ext/pango/gsttextoverlay.c: (gst_textoverlay_finalize),
11354         (gst_textoverlay_set_property):
11355         Free memory when done. Don't call gst_event_filler_get_duration on
11356         EOS events. Use GST_LOG and GST_WARNING instead of g_message and
11357         g_warning.
11358         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_init),
11359         (draw_line), (gst_smoothwave_dispose), (gst_sw_sinklink),
11360         (gst_sw_srclink), (gst_smoothwave_chain):
11361         Draw solid lines, prettier colours.
11362         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_init):
11363         Add a default palette that'll work for some movies.
11364         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init),
11365         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_send_discont),
11366         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset):
11367         * gst/mpegstream/gstdvddemux.h:
11368         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_discont),
11369         (gst_mpeg_demux_parse_syshead), (gst_mpeg_demux_parse_pes):
11370         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
11371         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_parse_packhead):
11372         * gst/mpegstream/gstmpegparse.h:
11373         Use PTM/NAV events when for timestamp adjustment when connected to 
11374         dvdnavsrc. Don't use many discont events where one suffices.
11375         * gst/playback/gstplaybasebin.c: (group_destroy),
11376         (gen_preroll_element), (gst_play_base_bin_add_element):
11377         * gst/playback/gstplaybasebin.h:
11378         Make sure we remove subtitles from the same bin we put them in.
11379         * gst/subparse/gstsubparse.c: (convert_encoding), (parse_subrip),
11380         (gst_subparse_buffer_format_autodetect),
11381         (gst_subparse_change_state):
11382         Fix some memleaks and invalid accesses.
11383         * gst/typefind/gsttypefindfunctions.c: (ogganx_type_find),
11384         (oggskel_type_find), (cmml_type_find), (plugin_init):
11385         Some typefind functions for Annodex v3.0 files
11386         * gst/wavparse/gstwavparse.h:
11387         GstRiffReadClass is the correct parent class.
11388
11389 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11390
11391         * gst-libs/gst/riff/riff-media.c:
11392         (gst_riff_create_video_caps_with_data):
11393           Add extradata to huffyuv (fixes #165013).
11394         * gst-libs/gst/riff/riff-read.c:
11395         (gst_riff_read_strf_vids_with_data):
11396           Fix extradata extraction if it is in the chunk size.
11397
11398 2005-01-25  Edward Hervey  <bilboed@bilboed.com>
11399
11400         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11401
11402         * gst/effectv/gstquark.c: (gst_quarktv_class_init),
11403         (gst_quarktv_change_state), (gst_quarktv_dispose):
11404           Memory free'ing location fix (#164708).
11405
11406 2005-01-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11407
11408         * gst/playback/gstplaybasebin.c: (group_commit),
11409         (gen_preroll_element), (probe_triggered), (gen_source_element),
11410         (setup_source), (gst_play_base_bin_change_state),
11411         (gst_play_base_bin_add_element):
11412           Don't block for streams.
11413         * gst/playback/gststreaminfo.c: (stream_info_change_state),
11414         (gst_stream_info_set_mute):
11415           Use gst_pad_set_active_recursive.
11416
11417 2005-01-25  Andy Wingo  <wingo@pobox.com>
11418
11419         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Fix compile
11420         for #ifndef HAVE_XVIDEO.
11421
11422 2005-01-24  Jeffrey C. Ollie
11423
11424         reviewed by: Maciej Katafiasz  <mathrick@freedesktop.org>
11425
11426         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_chain):
11427         * ext/gsm/gstgsmdec.h:
11428         * ext/gsm/gstgsmenc.c: (gst_gsmenc_init), (gst_gsmenc_chain):
11429         * ext/gsm/gstgsmenc.h:
11430         Fix rate to 8kHz as per spec, removes obscure errors when no rate
11431         was given by property. Add proper buffer timestamps and offsets.
11432
11433 2005-01-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11434
11435         * gst-libs/gst/riff/riff-media.c:
11436         (gst_riff_create_audio_caps_with_data):
11437           Audio can be <8000Hz.
11438
11439 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11440
11441         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
11442           Explicit state change to workaround refcount bugs.
11443
11444 2005-01-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11445
11446         * gst/avi/gstavimux.c: (gst_avimux_write_tag),
11447         (gst_avimux_riff_get_avi_header):
11448           Fix...
11449
11450 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11451
11452         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_element_data),
11453         (gst_riff_read_element_data):
11454         * gst-libs/gst/riff/riff-read.h:
11455           Add _peek version (req'ed in CDXA).
11456         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_init),
11457         (gst_cdxaparse_loop):
11458           Fix parsing in playbin.
11459         * gst/playback/gstdecodebin.c: (close_pad_link):
11460           Ignore current_ pads, they cause major annoyance.
11461
11462 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11463
11464         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
11465           Safety guard.
11466
11467 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11468
11469         * gst/avi/gstavimux.c: (gst_avimux_write_tag):
11470           Fix padding...
11471
11472 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11473
11474         * gst/matroska/ebml-read.c: (gst_ebml_read_buffer):
11475           Allow for 0-sized buffers. Fixes length query problems in
11476           starwars.mkv from the testsuite.
11477
11478 2005-01-19  Tim-Philipp M??ller  <tim at centricular dot net>
11479
11480         * gst/videobox/gstvideobox.c: (gst_video_box_copy_plane_i420),
11481         (gst_video_box_i420), (gst_video_box_chain):
11482           Fix row strides for I420 (fixes #163159)
11483           
11484 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11485
11486         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
11487           MPEG2 has a useful rate property, so we can actually use that.
11488           For MPEG-1, continue using the bytes/time properties.
11489
11490 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11491
11492         * gst-libs/gst/riff/riff-media.c:
11493         (gst_riff_create_video_caps_with_data),
11494         (gst_riff_create_video_template_caps):
11495           Add intel-h263.
11496
11497 2005-01-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11498
11499         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
11500           Fail if caps negotiation fails. Should fix #162184, and should
11501           definately be in there regardless of it fixing the actual bug.
11502         * gst/avi/gstavimux.c: (gst_avimux_get_type), (gst_avimux_init),
11503         (gst_avimux_write_tag), (gst_avimux_riff_get_avi_header),
11504         (gst_avimux_riff_get_avix_header),
11505         (gst_avimux_riff_get_video_header),
11506         (gst_avimux_riff_get_audio_header), (gst_avimux_write_index),
11507         (gst_avimux_start_file), (gst_avimux_handle_event),
11508         (gst_avimux_change_state):
11509         * gst/avi/gstavimux.h:
11510           Refactor structure writing to use GST_WRITE_UINT macros, add
11511           metadata writing support.
11512
11513 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11514
11515         * gst/playback/gststreaminfo.c: (gst_stream_info_dispose):
11516           Elements may already be destroyed when this function is called.
11517
11518 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11519
11520         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
11521         (gst_qtdemux_loop_header), (gst_qtdemux_handle_esds):
11522           More memory leak fixes (#149162).
11523
11524 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11525
11526         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
11527         (gst_qtdemux_add_stream):
11528           Fix two memleaks.
11529
11530 2005-01-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11531
11532         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
11533           Argh...
11534
11535 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11536
11537         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps):
11538           Fix off-by-one bug. Fixes warnings during playback of sincity.mp4
11539           when fixating to six channels in Totem.
11540
11541 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
11542
11543         * ext/dvdread/dvdreadsrc.c: (get_next_cell_for):
11544           Fix compile warnings on Solaris 10 buildbot
11545
11546 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
11547
11548         * ext/dvdread/dvdreadsrc.c: (_read):
11549           Don't read beyond the last cell in a chapter (fixes 
11550           invalid memory access)
11551
11552 2005-01-17  Tim-Philipp M??ller  <tim at centricular dot net>
11553
11554         * ext/dvdread/stream_labels.c:
11555         (dvdreadsrc_get_audio_stream_labels):
11556           Use NULL for an empty GList instead of g_list_alloc(); fix 
11557           memory leaks; s/LCPM/LPCM/; use g_strdup_printf() instead 
11558           of GString (easier to bulk free later)
11559
11560 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
11561
11562         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11563
11564         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11565         (gst_ffmpeg_pixfmt_to_caps):
11566           Fix BGRA32 caps (#164209).
11567
11568 2005-01-17  Gergely Nagy  <algernon@bonehunter.rulez.org>
11569
11570         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11571
11572         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11573         (gst_ffmpeg_caps_to_pixfmt):
11574           alpha_mask can be RGBA/ABGR. Fixes #164265.
11575
11576 2005-01-17  Francis Labonte  <francis_labonte@hotmail.com>
11577
11578         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11579
11580         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer),
11581         (gst_mpeg2dec_alloc_buffer):
11582         * ext/mpeg2dec/gstmpeg2dec.h:
11583           Crop if decoding size is not the actual image size (#163676).
11584
11585 2005-01-17  Steve Baker  <steve@stevebaker.org>
11586
11587         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11588
11589         * gst/typefind/gsttypefindfunctions.c: (aiff_type_find),
11590         (svx_type_find), (sds_type_find), (ircam_type_find), (plugin_init):
11591           Add libsndfile typefind functions (#163309).
11592
11593 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11594
11595         * tools/gst-launch-ext-m.m:
11596           Add .aac, fix .m1v/.m2v (#163891).
11597
11598 2005-01-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11599
11600         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_wait):
11601           Sanity check, don't wait endlessly since the clock might not
11602           actually run at this point (which is a deadlock). Fixes #164069.
11603
11604 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11605
11606         * gst/playback/gstplaybasebin.c: (probe_triggered):
11607           Of course, only pause if group is done...
11608
11609 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11610
11611         * gst/playback/gstplaybasebin.c: (probe_triggered):
11612           Thread safety.
11613
11614 2005-01-16  Jan Schmidt  <thaytan@mad.scientist.com>
11615
11616         * ext/swfdec/gstswfdec.c: (gst_swfdec_change_state):
11617           Don't return state change success when the parent
11618           failed.
11619
11620 2005-01-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11621
11622         * gst/avi/gstavimux.c: (gst_avimux_handle_event):
11623           Free events (fix memleak in #162905).
11624
11625 2005-01-15  Gergely Nagy  <algernon@bonehunter.rulez.org>
11626
11627         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11628
11629         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
11630         (gst_ffmpeg_caps_to_pixfmt):
11631           Fix for depth = 15. Fixes #161675.
11632
11633 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11634
11635         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
11636           Set FPS correctly, even for webcams and the like.
11637         * sys/v4l/v4l_calls.c: (gst_v4l_set_chan_norm):
11638           Don error on setting while capturing.
11639
11640 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11641
11642         * ext/dv/gstdvdec.c:
11643         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
11644         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
11645           I'm a bad boy. using /1001. to force C to do float division
11646           and not integer division (as it did in my last commit)
11647           Thanks to David I. Lehn for pointing this mistake.
11648
11649 2005-01-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11650
11651         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
11652           Revert Johan??s 1.35->1.36 since it breaks compat.
11653
11654 2005-01-14  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11655
11656         * ext/dv/gstdvdec.c:
11657         * ext/libfame/gstlibfame.c:
11658         * gst/subparse/gstsubparse.c: (parse_mdvdsub):
11659         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect):
11660           replace framerate aproximations by their real value
11661           (24000/1001, 30000/1001, 60000/1001)
11662           Finish fixing bug #164049
11663
11664 2005-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
11665
11666         * ext/ogg/gstoggmux.c:
11667           eos/bos debugging
11668         * gst/tcp/gstmultifdsink.c:
11669         * gst/tcp/gstmultifdsink.h:
11670         * gst/tcp/gsttcp.c:
11671         * gst/tcp/gsttcp.h:
11672         * gst/tcp/gsttcpclientsink.c:
11673         * gst/tcp/gsttcpclientsrc.c:
11674         * gst/tcp/gsttcpserversink.c:
11675         * gst/tcp/gsttcpserversrc.c:
11676           improve reusability of elements after state changes and errors
11677           make multifdsink throw away streamheaders when receiving new ones
11678
11679 2005-01-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11680
11681         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
11682           Fix for if items are already in list...
11683
11684 2005-01-12  Benjamin Otte  <otte@gnome.org>
11685
11686         * gst/adder/gstadder.c: (gst_adder_loop):
11687           fix adder a bit so it doesn't screw up with events as much anymore
11688
11689 2005-01-12  Jan Schmidt  <thaytan@mad.scientist.com>
11690
11691         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_link),
11692         (pixbufscale_scale), (gst_pixbufscale_chain):
11693         * ext/gdk_pixbuf/pixbufscale.h:
11694           Incorporate changes from Tim-Philipp Mueller <t.i.m@orange.net>
11695           to ensure rowstrides are calculated the same way as 
11696           ffmpegcolorspace
11697           Use gst_buffer_stamp instead of copying TIMESTAMP manually, so
11698           that we pick up duration and offset also.
11699
11700 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11701
11702         * gst/avi/gstavimux.c: (gst_avimux_class_init),
11703         (gst_avimux_pad_unlink), (gst_avimux_release_pad):
11704           Reusability fixes.
11705
11706 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11707
11708         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
11709         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
11710         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
11711         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
11712           Update flags when requested.
11713
11714 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11715
11716         * ext/alsa/gstalsa.c: (gst_alsa_rates_probe):
11717           Fix dmix.
11718
11719 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11720
11721         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
11722         (gst_play_base_bin_init), (gst_play_base_bin_dispose),
11723         (probe_triggered), (new_decoded_pad), (gen_source_element),
11724         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property):
11725         * gst/playback/gstplaybasebin.h:
11726         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
11727         (gst_play_bin_init), (group_switch), (remove_sinks), (setup_sinks),
11728         (gst_play_bin_change_state):
11729           Implement group-switch signal for use in apps to clear metadata
11730           cache, clean up subtitle, add suburi property instead of # hack,
11731           some error-out fixes.
11732
11733 2005-01-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11734
11735         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
11736           Debug.
11737         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame):
11738           If we got a state change in the _get handler, don't return success.
11739
11740 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11741
11742         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_my_output_message),
11743         (gst_jpegdec_my_emit_message), (gst_jpegdec_init):
11744           Make jpegdec quiet on MJPEG decoding
11745         * gst/asfdemux/README:
11746           Fix mimetypes for MJPEG and H263
11747
11748 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11749
11750         * ext/theora/theoradec.c: (theora_dec_chain):
11751           Fix broken code generation by gcc by swapping arguments.
11752         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
11753           Fix \n in debug.
11754
11755 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11756
11757         * TODO:
11758           delete this file, it is by far outdated
11759         * ext/alsa/gstalsa.1: remove
11760         * ext/alsa/gstalsa.c: (add_rates), (add_channels), (gst_alsa_caps),
11761         (gst_alsa_check_sample_rates), (gst_alsa_rates_probe),
11762         (gst_alsa_get_caps):
11763           Add HW probing for supported sample rates. Fixes #161704
11764
11765 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11766
11767         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
11768           Don't crash, biatch! :).
11769
11770 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11771
11772         * ext/musepack/gstmusepackreader.cpp:
11773         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
11774           Some work on tags - still doesn't work in playbin...
11775         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
11776           Handle events...
11777
11778 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11779
11780         * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree):
11781           Also shove tags on kid pads.
11782
11783 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11784
11785         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
11786           Don't bail on unknown events.
11787         * gst/audioscale/gstaudioscale.c: (gst_audioscale_chain):
11788           Don't crash on events before negotiation.
11789         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
11790           Send tags on pads, too.
11791         * gst/playback/gststreamselector.c:
11792         (gst_stream_selector_request_new_pad):
11793           Forward events on first pad if no input was selected yet.
11794
11795 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11796
11797         * gst/playback/gstplaybasebin.c: (setup_substreams):
11798           Don't disable streamtype if the stream doesn't exist, since
11799           then playing a video after audio will disable both and nothing
11800           will happen. Fixes the testsuite.
11801
11802 2005-01-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11803
11804         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_interface_init),
11805         (gst_v4l_xoverlay_set_xwindow_id):
11806         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_interface_init),
11807         (gst_v4l2_xoverlay_set_xwindow_id):
11808           Add debug categories, fix overlay disabling.
11809
11810 2005-01-10  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11811
11812         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_get_caps):
11813         * ext/alsa/gstalsa.h:
11814           Add HW probing for period_count/size and buffer_size MIX/MAX
11815           Adjust default/user defined value if out of bounds
11816           Should fix bug #162024
11817
11818 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11819
11820         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event):
11821           Fix warning (#161191).
11822
11823 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11824
11825         * ext/dvdread/stream_labels.c:
11826         (dvdreadsrc_get_audio_stream_labels):
11827           Fix warning (init the good variable in switch default)
11828
11829 2005-01-09  Koop Mast  <kwm@rainbow-runner.nl>
11830
11831         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11832
11833         * gst/tta/gstttaparse.c: (gst_tta_src_event):
11834           Fix gcc-2.95 compile (#163485).
11835
11836 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11837
11838         * configure.ac:
11839         * ext/flac/gstflacenc.c: (gst_flacenc_init),
11840         (gst_flacenc_seek_callback), (gst_flacenc_write_callback),
11841         (gst_flacenc_tell_callback), (gst_flacenc_chain),
11842         (gst_flacenc_change_state):
11843         * ext/flac/gstflacenc.h:
11844           Update for API change in flac-1.1.1. Update requirement in
11845           configure.ac. Fixes #162974.
11846
11847 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11848
11849         * gst/playback/gstplaybasebin.c: (group_destroy):
11850           Remove hack to get rid of assert and get rid of unlinked
11851           signals properly.
11852
11853 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11854
11855         * gst/playback/gstplaybasebin.c: (setup_source):
11856           Set source to NULL so that resources are free'ed. Fixes issues
11857           with playback of CDDA and similar device-accessing things.
11858
11859 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11860
11861         * testsuite/embed/Makefile.am:
11862           test->noinst, fix make test in buildbot.
11863
11864 2005-01-09  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
11865
11866         * ext/dvdread/stream_labels.c: new file
11867         * ext/dvdread/stream_labels.h: new file
11868         * ext/dvdread/Makefile.am:
11869         * ext/dvdread/dvdreadsrc.c: (_seek_title):
11870           Extract audio stream label from DVD IFO files.
11871           It only dump them on the console for now, still have to
11872           make playbin aware of them.
11873
11874 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11875
11876         * gst/playback/gstplaybasebin.c: (setup_source):
11877           Fix hanging subs.
11878
11879 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11880
11881         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
11882         (gen_preroll_element), (remove_groups), (setup_subtitle),
11883         (gen_source_element), (setup_source):
11884         * gst/playback/gstplaybasebin.h:
11885           Multiple .sub files is just a stupid idea... Fix some threading
11886           mistakes. Interestingly, external .sub files cause playbin to
11887           hang, I don't know why... Parsing fixes contributed by Fran??ois
11888           Kooman <fkooman@tuxed.net>.
11889
11890 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11891
11892         * testsuite/embed/Makefile.am:
11893           Fix buildbot.
11894
11895 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
11896
11897         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11898
11899         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
11900         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
11901         (gst_pngenc_set_property):
11902         * ext/libpng/gstpngenc.h:
11903           Add compression level property (#163323).
11904
11905 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11906
11907         * configure.ac:
11908         * examples/capsfilter/capsfilter1.c: (main):
11909         * examples/seeking/spider_seek.c: (make_spider_pipeline):
11910         * ext/dvdread/Makefile.am:
11911         * ext/dvdread/demo-play:
11912         * ext/dvdread/demo-play.c:
11913         * gconf/gstreamer.schemas.in:
11914         * gst-libs/gst/gconf/gconf.c:
11915         * sys/v4l/TODO:
11916         * testsuite/Makefile.am:
11917         * testsuite/embed/Makefile.am:
11918         * testsuite/embed/embed.c: (cb_expose), (main):
11919           Remove all references to xvideosink, fix examples (#140845).
11920         * gst/playback/gstplaybasebin.c: (group_destroy):
11921           Apparently, disposal does not unlink - so do explicitely.
11922         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
11923           Add debug.
11924
11925 2005-01-09  Maciej Katafiasz <mathrick@freedesktop.org>
11926
11927         * README: fix PKG_CONFIG_PATH instructions, what was there
11928         previously was breaking default search path, not nice. 
11929         Fixes #163358
11930
11931 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11932
11933         * gst/audioscale/gstaudioscale.c: (gst_audioscale_init),
11934         (gst_audioscale_chain):
11935           %#^@^#@^@#^#@^#@^@#^@#^@#^@#^#@^#@^#@^@#^#@ fix seeking
11936           when resampling - how the ^@$^!@^! is this possible?!?
11937
11938 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11939
11940         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
11941           Reset variables on READY.
11942         * gst/matroska/matroska-mux.c: (gst_matroska_mux_request_new_pad),
11943         (gst_matroska_mux_loop):
11944           Require data before writing header.
11945
11946 2005-01-09  Francis Labonte  <francis_labonte@hotmail.com>
11947
11948         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11949
11950         * ext/mad/gstmad.c: (gst_mad_chain):
11951           Don't call mad_stream_sync() directly after recovering sync.
11952           Fixes #151661.
11953
11954 2005-01-09  Martin Eikermann  <meiker@upb.de>
11955
11956         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11957
11958         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init),
11959         (snapshot_handler), (gst_snapshot_sinkconnect),
11960         (gst_snapshot_chain):
11961           Allocate resources when required, fix recursive signal emission
11962           and fix caps. Fixes #161667.
11963
11964 2005-01-09  Gergely Nagy  <algernon@bonehunter.rulez.org>
11965
11966         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11967
11968         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps),
11969         (gst_pngdec_chain):
11970           Handle only 8-bppc (bits-per-pixel-component) images, better
11971           error handling and correct strides. Fixes #163177.
11972         * ext/libpng/gstpngenc.c: (gst_pngenc_sinklink),
11973         (gst_pngenc_chain):
11974           Better error handling. Fixes #163348.
11975
11976 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11977
11978         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_get_type),
11979         (dvdnavsrc_uri_get_type), (dvdnavsrc_uri_get_protocols),
11980         (dvdnavsrc_uri_get_uri), (dvdnavsrc_uri_set_uri),
11981         (dvdnavsrc_uri_handler_init):
11982           Add DVD-nav URI (dvdnav://) for Totem testing purposes.
11983         * gst/playback/gstplaybasebin.c: (gen_source_element):
11984           Add MMS to streaming URIs.
11985
11986 2005-01-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11987
11988         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
11989         * sys/xvimage/xvimagesink.c:
11990         (gst_xvimagesink_navigation_send_event):
11991           Check for pad availability before sending event.
11992
11993 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11994
11995         * gst-plugins.spec.in:
11996           Add subparse.
11997
11998 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
11999
12000         * configure.ac:
12001           Since we use functions from CVS, up requirement.
12002
12003 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12004
12005         * gst/playback/Makefile.am:
12006         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12007         (group_destroy), (group_commit), (group_is_muted),
12008         (gen_preroll_element), (add_stream), (unknown_type),
12009         (probe_triggered), (preroll_unlinked), (mute_stream),
12010         (silence_stream), (new_decoded_pad), (setup_substreams),
12011         (setup_source), (get_active_source), (mute_group_type),
12012         (muted_group_change_state), (set_active_source),
12013         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
12014         (play_base_eos), (gst_play_base_bin_change_state):
12015         * gst/playback/gstplaybasebin.h:
12016         * gst/playback/gstplaybin.c: (add_sink), (setup_sinks):
12017         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
12018         (gst_stream_info_dispose), (stream_info_mute_pad),
12019         (stream_info_change_state), (gst_stream_info_set_mute):
12020         * gst/playback/gststreamselector.c: (gst_stream_selector_get_type),
12021         (gst_stream_selector_base_init), (gst_stream_selector_class_init),
12022         (gst_stream_selector_init), (gst_stream_selector_dispose),
12023         (gst_stream_selector_get_linked_pad),
12024         (gst_stream_selector_get_caps), (gst_stream_selector_link),
12025         (gst_stream_selector_get_linked_pads),
12026         (gst_stream_selector_request_new_pad), (gst_stream_selector_chain):
12027         * gst/playback/gststreamselector.h:
12028           Adding stream selection support plus required properties for
12029           applications to use this. Fully fixes #100931.
12030
12031 2005-01-08  Benjamin Otte  <otte@gnome.org>
12032
12033         * gst/games/gstpuzzle.c: (nav_event_handler):
12034           - handle nav events differently: forward every event no matter if it
12035             was handled or not.
12036           - translate events
12037           You can now cheat by using navigationtest ! puzzle and moving the
12038           mouse close to the edge of a tile. ;)
12039
12040 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12041
12042         * configure.ac:
12043         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
12044         * ext/ogg/gstogmparse.c: (gst_ogm_text_parse_get_type),
12045         (gst_ogm_text_parse_base_init), (gst_ogm_text_parse_init),
12046         (gst_ogm_parse_get_sink_querytypes), (gst_ogm_parse_sink_convert),
12047         (gst_ogm_parse_sink_query), (gst_ogm_parse_chain),
12048         (gst_ogm_parse_plugin_init):
12049         * ext/pango/gsttextoverlay.c: (gst_textoverlay_linkedpads),
12050         (gst_textoverlay_link), (gst_textoverlay_getcaps),
12051         (gst_textoverlay_event), (gst_textoverlay_video_chain),
12052         (gst_textoverlay_loop), (gst_textoverlay_init), (plugin_init):
12053         * ext/pango/gsttextoverlay.h:
12054         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
12055         (gst_matroska_demux_handle_seek_event),
12056         (gst_matroska_demux_sync_streams),
12057         (gst_matroska_demux_parse_blockgroup),
12058         (gst_matroska_demux_subtitle_caps),
12059         (gst_matroska_demux_plugin_init):
12060         * gst/matroska/matroska-ids.h:
12061         * gst/playback/gstdecodebin.c: (close_pad_link):
12062         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
12063         (gen_preroll_element), (remove_groups), (add_stream),
12064         (new_decoded_pad), (setup_subtitles), (gen_source_element),
12065         (setup_source):
12066         * gst/playback/gstplaybasebin.h:
12067         * gst/playback/gstplaybin.c: (gen_text_element), (setup_sinks):
12068         * gst/subparse/Makefile.am:
12069         * gst/subparse/gstsubparse.c: (gst_subparse_get_type),
12070         (gst_subparse_base_init), (gst_subparse_class_init),
12071         (gst_subparse_init), (gst_subparse_formats),
12072         (gst_subparse_eventmask), (gst_subparse_event),
12073         (gst_subparse_handle_event), (convert_encoding), (get_next_line),
12074         (parse_mdvdsub), (parse_mdvdsub_init), (parse_subrip),
12075         (parse_subrip_deinit), (parse_subrip_init), (parse_mpsub),
12076         (parse_mpsub_deinit), (parse_mpsub_init),
12077         (gst_subparse_buffer_format_autodetect),
12078         (gst_subparse_format_autodetect), (gst_subparse_loop),
12079         (gst_subparse_change_state), (gst_subparse_type_find),
12080         (plugin_init):
12081         * gst/subparse/gstsubparse.h:
12082         * gst/typefind/gsttypefindfunctions.c: (ogmtext_type_find),
12083         (plugin_init):
12084           Add subtitle support, .sub parser (supports SRT and MPsub),
12085           OGM text support, Matroska UTF-8 text support, deadlock fixes
12086           all over the place, subtitle awareness in decodebin/playbin
12087           and some fixes to textoverlay to handle subtitles in a stream
12088           correctly. Fixes #100931.
12089
12090 2005-01-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12091
12092         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
12093           Check for pad availability before doing a query on it.
12094
12095 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12096
12097         * ext/dv/gstdvdec.c:
12098           really fix bpp24/32 dvdec caps (classic rgba indeed)
12099         * gst/asfdemux/gstasfdemux.c:
12100         (gst_asf_demux_process_ext_content_desc):
12101           don't send text tags if they are empty (bis repetita)
12102
12103 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12104
12105         * ext/dv/gstdvdec.c:
12106          remove unneeded comment from dvdec
12107           (related to DV 4CC codes in AVI files)
12108           moved them in gstreamer/docs/random/mimetypes
12109         * gst/asfdemux/gstasfdemux.c:
12110         (gst_asf_demux_process_ext_content_desc):
12111          don't send text tags if they are empty
12112          fix mem leak on error path
12113         * gst/ffmpegcolorspace/avcodec.h:
12114         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12115         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
12116         (gst_ffmpegcsp_avpicture_fill):
12117         * gst/ffmpegcolorspace/imgconvert.c: (img_get_alpha_info):
12118         * gst/ffmpegcolorspace/imgconvert_template.h:
12119          adds BGR32 and BGRA32 to ffmpegcolorspace
12120           (still bad colors, fixing it on next commit)
12121           helps with dvdec outputing BGR32
12122
12123 2005-01-08  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12124
12125         * ext/dv/gstdvdec.c:
12126          Fix audio caps i just broke (missing ',')
12127         * gst/matroska/matroska-mux.c: (gst_matroska_mux_get_type),
12128         (gst_matroska_mux_reset):
12129          Fix typo + add FIXME about old "x-gst-metadata" crap
12130
12131 2005-01-07  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12132
12133         * ext/dv/demo-play.c: (main):
12134          xvideosink -> xvimagesink
12135         * ext/dv/gstdvdec.c:
12136          change rgb 32/32 caps to 24/32 (no alpha)
12137          change nb of channels to be a list (2 or 4, not 2)
12138          change sample rate to be a list (32, 44.1, 48 kHz) not a range
12139         * gst/asfdemux/gstasfdemux.c:
12140         (gst_asf_demux_process_ext_content_desc):
12141          Add 'date/year' to extracted metadata list
12142
12143 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12144
12145         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
12146           The return value of fixate_to does not imply that the requested
12147           value was set, so don't assume.
12148
12149 2005-01-07  Gergely Nagy  <algernon@bonehunter.rulez.org>
12150
12151         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12152
12153         * ext/libpng/gstpngdec.c:
12154         * ext/libpng/gstpngenc.c: (gst_pngenc_base_init),
12155         (gst_pngenc_sinklink), (gst_pngenc_init), (gst_pngenc_chain):
12156         * ext/libpng/gstpngenc.h:
12157           Alpha support (encoder; #163161), mime fixage.
12158
12159 2005-01-07  Sebastien Cote  <sc5@hermes.usherb.ca>
12160
12161         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12162
12163         * ext/faac/gstfaac.c: (gst_faac_outputformat_get_type),
12164         (gst_faac_class_init), (gst_faac_init), (gst_faac_srcconnect),
12165         (gst_faac_set_property), (gst_faac_get_property):
12166         * ext/faac/gstfaac.h:
12167           Allow for ADTS output (#153434).
12168
12169 2005-01-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12170
12171         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
12172           Fix against template (#150576).
12173
12174 2005-01-06  Benjamin Otte  <otte@gnome.org>
12175
12176         * gst/games/gstpuzzle.c: (draw_puzzle):
12177           don't draw a puzzle if either width or height of tiles would be 0.
12178
12179 2005-01-06  Benjamin Otte  <otte@gnome.org>
12180
12181         * gst/games/gstpuzzle.c: (gst_puzzle_get_type),
12182         (gst_puzzle_class_init), (gst_puzzle_finalize):
12183           no memleaks, please
12184         (gst_puzzle_create), (gst_puzzle_init),
12185         (gst_puzzle_set_property), (gst_puzzle_setup):
12186           change initialization code around so we don't reshuffle on resize
12187         (draw_puzzle):
12188           fix another stupid typo
12189
12190 2005-01-06  Benjamin Otte  <otte@gnome.org>
12191
12192         * gst/games/gstvideoimage.c: (copy_hline_YUY2):
12193           fix stupid typo that borked copying on YUY2
12194
12195 2005-01-06  Benjamin Otte  <otte@gnome.org>
12196
12197         * gst/games/gstpuzzle.c: (draw_puzzle):
12198           fix edges when image sizes aren't multiples of tile sizes
12199
12200 2005-01-06  Benjamin Otte  <otte@gnome.org>
12201
12202         * gst/games/gstpuzzle.c: (gst_puzzle_base_init):
12203           make RGB endianness work correctly
12204         (gst_puzzle_show), (gst_puzzle_swap), (gst_puzzle_move):
12205           refactor and fix race with initial shuffling
12206         (nav_event_handler):
12207           allow using the mouse to puzzle
12208         (draw_puzzle):
12209           insist on tiles having width and height as multiples of 4 to get
12210           clean YUV image handling
12211         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
12212         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_buffer_alloc):
12213           s/DEBUG/LOG/ for common messages
12214         (gst_xvimagesink_navigation_send_event):
12215           fix mouse event translation to not include screen PAR
12216         * sys/ximage/ximagesink.c: (gst_ximagesink_navigation_send_event):
12217           fix mouse event translation to actually work
12218
12219 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12220
12221         * gst/asfdemux/gstasfdemux.c:
12222         (gst_asf_demux_process_ext_content_desc):
12223          Extract TrackNumber metadata + clean up code
12224         * gst/games/gstvideoimage.c: (gst_video_image_draw_rectangle):
12225          Hope this is the good fix (var used unitialised)
12226
12227 2005-01-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12228
12229         * ext/faad/gstfaad.c: (gst_faad_chain):
12230           Only increment timestamp if it's valid. Fixes raw AAC streams.
12231
12232 2005-01-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12233
12234         * configure.ac:
12235         * gst/games/Makefile.am:
12236         * gst/games/gstpuzzle.c:
12237           add a puzzle game with...
12238         * gst/games/gstvideoimage.c:
12239         * gst/games/gstvideoimage.h:
12240           ... full colorspace support (that includes YUV9 and RGB16)) stolen
12241           from videotestsrc and made into something that would be a nice
12242           library for a lot of other plugins.
12243
12244 2005-01-06  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12245
12246         * configure.ac:
12247          don't compile faad plugin if a RC of 2.0 is found
12248          Fixes #155346 (and FC1 buildbot)
12249         * gst/asfdemux/gstasfdemux.c:
12250         (gst_asf_demux_process_ext_content_desc):
12251          try to make Solaris compiler happier
12252
12253 2005-01-06  Paul Jack  <pjack@sfaf.org>
12254
12255         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12256
12257         * ext/snapshot/gstsnapshot.c: (gst_snapshot_class_init):
12258           Fix segfault (#161667).
12259
12260 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12261
12262         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
12263           Fix framerate reporting.
12264
12265 2005-01-05  Stephane LOEUILLET  <stephane.loeuillet@tiscali.fr>
12266
12267         * gst-libs/gst/riff/riff-ids.h:
12268         * gst/wavenc/riff.h:
12269          Add AMR (VBR and CBR) ids to riff.h audio codec list
12270         * gst/asfdemux/gstasfdemux.c:
12271         (gst_asf_demux_process_ext_content_desc),
12272         (gst_asf_demux_process_object):
12273           Retrieve more tags from ASF files (Genre, AlbumTitle, Artist)
12274
12275 2005-01-05  Martin Eikermann  <meiker@upb.de>
12276
12277         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12278
12279         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
12280         (gst_dvd_demux_handle_discont):
12281         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
12282         (gst_mpeg_demux_handle_discont):
12283           Recreate pads on new-media (#160730).
12284         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_new_pad):
12285           Send discont even if manager changes timestamps (#161929).
12286
12287 2005-01-05  Sebastien Cote  <sc5@hermes.usherb.ca>
12288
12289         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12290
12291         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16):
12292           Fix invalid memory access (#159211).
12293
12294 2005-01-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12295
12296         * examples/gstplay/player.c: (main):
12297           Don't iterate.
12298         * examples/seeking/seek.c: (fixate), (make_playerbin_pipeline):
12299           Add visualizations.
12300         * ext/a52dec/gsta52dec.c: (gst_a52dec_push),
12301         (gst_a52dec_handle_frame):
12302           Set duration.
12303         * ext/dvdnav/gst-dvd:
12304           Add audioconvert. Fixes #161325.
12305         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get):
12306           Explicitely case to gint64. Possible valgrind error.
12307         * gst-libs/gst/play/play.c: (caps_set), (setup_size),
12308         (gst_play_tick_callback), (gst_play_change_state),
12309         (gst_play_dispose), (gst_play_init), (gst_play_class_init),
12310         (gst_play_set_location), (gst_play_get_location),
12311         (gst_play_seek_to_time), (gst_play_set_data_src),
12312         (gst_play_set_video_sink), (gst_play_set_audio_sink),
12313         (gst_play_set_visualization), (gst_play_connect_visualization),
12314         (gst_play_get_framerate), (gst_play_get_all_by_interface),
12315         (gst_play_new):
12316           Use playbin. Fixes #139749 and #147744.
12317         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags):
12318           Add genre tag.
12319         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
12320         (audioscale_get_type), (gst_audioscale_base_init),
12321         (gst_audioscale_class_init), (gst_audioscale_expand_caps),
12322         (gst_audioscale_getcaps), (gst_audioscale_fixate),
12323         (gst_audioscale_link), (gst_audioscale_get_buffer),
12324         (gst_audioscale_decrease_rate), (gst_audioscale_increase_rate),
12325         (gst_audioscale_init), (gst_audioscale_dispose),
12326         (gst_audioscale_chain), (gst_audioscale_set_property),
12327         (gst_audioscale_get_property), (plugin_init):
12328           Indent properly.
12329         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
12330           Fix LPCM.
12331         * gst/qtdemux/qtdemux.c: (qtdemux_parse_udta),
12332         (qtdemux_tag_add_str), (qtdemux_tag_add_num),
12333         (qtdemux_tag_add_gnre), (qtdemux_video_caps):
12334           Add more metadata (fixes #162656).
12335
12336 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12337
12338         * configure.ac:
12339           back to cvs
12340
12341 === release 0.8.7 ===
12342
12343 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12344
12345         * NEWS:
12346         * RELEASE:
12347         * configure.ac:
12348           releasing 0.8.7, "Hyperspace"
12349
12350 2005-01-05  Thomas Vander Stichele  <thomas at apestaart dot org>
12351
12352         patch by: Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12353
12354         * gst/playback/gstplaybasebin.c:
12355          Fix for #162924 - free caps after use, not before
12356
12357 2005-01-04  Thomas Vander Stichele  <thomas at apestaart dot org>
12358
12359         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
12360
12361         * gst/playback/gstplaybasebin.c:
12362         * gst/wavparse/gstwavparse.c:
12363           Fix for #154773 - fixes playback of small .wav files
12364
12365 2005-01-03  Thomas Vander Stichele  <thomas at apestaart dot org>
12366
12367         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
12368
12369         * gst/audioscale/gstaudioscale.c:
12370           Fix for #162819 - make audioscale reusable
12371           Fixes playback of more than one file with playbin/totem
12372
12373 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12374
12375         * gst/ffmpegcolorspace/avcodec.h:
12376         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
12377         * gst/ffmpegcolorspace/imgconvert.c:
12378           clean up the mess that made me cry and avoid needless duplication
12379
12380 2004-12-29  Thomas Vander Stichele  <thomas at apestaart dot org>
12381
12382         * gst/ffmpegcolorspace/imgconvert.c:
12383           give some indication of why we're segfaulting
12384
12385 2004-12-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12386
12387         * configure.ac:
12388           Fix indentation, fix v4l2 plugin detection.
12389         * ext/Makefile.am:
12390           Fix libmms location (Maciej, use diff -u!).
12391         * ext/alsa/gstalsa.c: (gst_alsa_init):
12392           Initialize caps cache to NULL.
12393         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
12394           Only change state on audiosink if it exists.
12395
12396 2004-12-28  Maciej Katafiasz  <mathrick@mathrick.org>
12397
12398         * gst/matroska/matroska-demux.c:
12399         * gst/matroska/matroska-ids.h:
12400         * gst/matroska/matroska-demux.h:
12401         Fix Vorbis streams failing to decode in some files, where cluster_time
12402         isn't 0, because then it doesn't send codec_priv before actual data.
12403         Remove time-based test and replace it with marker set on beginning of
12404         new stream
12405
12406 2004-12-28  David Schleef  <ds@schleef.org>
12407
12408         Merge patch from Ronald fixing problems with streaming
12409         text.
12410         * ext/cairo/gstcairo.c: (plugin_init):
12411         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
12412         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
12413         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
12414         (gst_textoverlay_font_init), (gst_textoverlay_init),
12415         (gst_textoverlay_set_property):
12416         * ext/cairo/gsttextoverlay.h:
12417
12418 2004-12-27  David Schleef  <ds@schleef.org>
12419
12420         * ext/cairo/gsttextoverlay.c: (gst_textoverlay_render_text),
12421         (gst_text_overlay_blit_1), (gst_text_overlay_blit_sub2x2),
12422         (gst_textoverlay_video_chain), (gst_textoverlay_loop),
12423         (gst_textoverlay_font_init), (gst_textoverlay_init),
12424         (gst_textoverlay_set_property): Improvements to actually
12425         render text as white on black outline on video, including
12426         font selection and horizontal/vertical alignment.  (Ronald's
12427         christmas present)
12428         * ext/cairo/gsttextoverlay.h:
12429
12430 2004-12-26  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12431
12432         * ext/ogg/gstogg.c:
12433         * ext/ogg/gstogmparse.c:
12434           fix ogm[audio/video]parse plugin registration
12435           (riff won't load if bytestream is already loaded)
12436
12437 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12438
12439         * gst/audioconvert/gstchannelmix.c:
12440           fix for GLIB < 2.4
12441
12442 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12443
12444         * Makefile.am:
12445         * configure.ac:
12446           disable docs again until it actually passes make distcheck.
12447
12448 2004-12-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12449
12450         * gst/qtdemux/qtdemux.c: (qtdemux_type_get), (qtdemux_audio_caps):
12451         * gst/typefind/gsttypefindfunctions.c: (q3gp_type_find),
12452         (plugin_init):
12453           Add 3GP (variables name Q3GP because they can't start with a
12454           number). Add samr audio fourcc (used in .3gp files), decoder
12455           is work in progress. Also do a GST_WARNING instead of ERROR
12456           in case of unknown nodes, to decrease output.
12457
12458 2004-12-24  Thomas Vander Stichele  <thomas at apestaart dot org>
12459
12460         * Makefile.am:
12461           really fix dist
12462
12463 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12464
12465         * configure.ac:
12466         * ext/speex/gstspeexdec.h:
12467         * ext/speex/gstspeexenc.h:
12468           Fixes #158382.  Make speex plugin compatible with both 1.0 and 1.1.
12469           Fix detection code in configure.ac
12470
12471 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12472
12473         * gst/matroska/matroska-demux.c:
12474         (gst_matroska_demux_parse_blockgroup):
12475           Save position, so that queries give proper return values. Don't
12476           know how this could ever have worked before...
12477
12478 2004-12-23  Thomas Vander Stichele  <thomas at apestaart dot org>
12479
12480         * configure.ac:
12481           Put additional LAME check inside the conditional.  Fixes #152339
12482
12483 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12484
12485         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
12486         (gst_avi_demux_stream_scan):
12487           Add some more debug. Fix logic error when setting movi offset
12488           while reading index.
12489
12490 2004-12-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12491
12492         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
12493         (gst_avi_demux_stream_scan), (gst_avi_demux_handle_seek),
12494         (gst_avi_demux_process_next_entry):
12495           Add some debugging. Better detection of broken indexes and the
12496           accompanying index recovery. No infinite loops on state changes
12497           when we're still in our loopfunction.
12498
12499 2004-12-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12500
12501         * configure.ac:
12502           Fix up.
12503
12504 2004-12-22  Archana Shah  <archana.shah@wipro.com>
12505
12506         Reviewed by:  Ronald S. Bultje <rbultje@ronald.bitfreak.net>
12507
12508         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_volume):
12509           Normalizing the value before setting
12510         (gst_sunaudiomixer_get_volume):
12511           Normalizing the value after getting. Fixes bug# 161980
12512
12513 2004-12-22  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
12514
12515         * Makefile.am: Make sure docs gets disted
12516         * docs/Makefile.am: Make sure all needed files get disted
12517         * gst-plugins.spec.in: latest updates
12518
12519 2004-12-22  Wim Taymans  <wim@fluendo.com>
12520
12521         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
12522         Revert patch 1.38 as clock distribution over schedulers does
12523         not work correcly in the core yet.
12524
12525 2004-12-21  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12526
12527         * sys/oss/README: remove this file, which predates my birth
12528           (and which content is by far outdated)
12529
12530 2004-12-20  Stefan Kost  <ensonic@users.sf.net>
12531
12532         * Makefile.am:
12533         * configure.ac:
12534         * docs/Makefile.am:
12535         * docs/libs/Makefile.am:
12536         * docs/libs/gst-plugins-libs-docs.sgml:
12537         * docs/libs/gst-plugins-libs-sections.txt:
12538         * docs/libs/tmpl/gstgconf.sgml:
12539         * docs/upload.mak:
12540         * docs/version.entities.in:
12541           Added boilerplate gtk-doc files for plugin-libs documentation.
12542
12543 2004-12-19  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12544
12545         * gst/auparse/gstauparse.c: fix int and float audio caps
12546
12547 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12548
12549         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
12550         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
12551           g_assert() can be a macro, don't use #ifdef inside it.
12552
12553 2004-12-19  Edward Hervey  <bilboed@bilboed.com>
12554
12555         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12556
12557         * gst/videorate/gstvideorate.c: (gst_videorate_blank_data),
12558         (gst_videorate_init), (gst_videorate_chain),
12559         (gst_videorate_change_state):
12560           Event handling (fixes #159986).
12561
12562 2004-12-19  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12563
12564         * gst-libs/gst/riff/riff-media.c:
12565         (gst_riff_create_video_caps_with_data):
12566           Add BLZ0 (Blizzard's version of DivX) fourcc.
12567
12568 2004-12-18  David Schleef  <ds@schleef.org>
12569
12570         * gst/tta/gstttadec.c: (gst_tta_dec_link): And yet another
12571         portability fix.
12572
12573 2004-12-18  David Schleef  <ds@schleef.org>
12574
12575         * gst/tta/ttadec.h: Disable some header code that isn't used
12576         and clearly isn't portable.
12577
12578 2004-12-18  David Schleef  <ds@schleef.org>
12579
12580         * gst/ffmpegcolorspace/imgconvert.c: (get_pix_fmt_info),
12581         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
12582         (avcodec_get_pix_fmt), (avpicture_layout),
12583         (avcodec_get_pix_fmt_loss), (avg_bits_per_pixel), (img_copy),
12584         (get_convert_table_entry), (img_convert), (img_get_alpha_info):
12585         Fix code to not use GCC extensions (and c99 extensions that
12586         Forte does not like.)
12587
12588 2004-12-19  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
12589
12590         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12591
12592         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
12593         (gst_deinterlace_chain):
12594           Rowstride fixes. Fixes #161039.
12595         * gst/videocrop/gstvideocrop.c: (gst_video_crop_init),
12596         (gst_video_crop_get_property), (gst_video_crop_add_to_struct_val),
12597         (gst_video_crop_getcaps), (gst_video_crop_link),
12598         (gst_video_crop_i420), (gst_video_crop_chain),
12599         (gst_video_crop_change_state):
12600           Rework of negotiation. Actually works now. Fixes #158650.
12601
12602 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12603
12604         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_sint):
12605           That was very stupid.
12606
12607 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12608
12609         * gst/matroska/matroska-demux.c:
12610         (gst_matroska_demux_parse_blockgroup):
12611           Fix possible crasher.
12612
12613 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12614
12615         * gst/matroska/matroska-demux.c: (gst_matroska_ebmlnum_uint),
12616         (gst_matroska_ebmlnum_sint), (gst_matroska_demux_parse_blockgroup):
12617           Lace sizes can be zero.
12618
12619 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12620
12621         * ext/musepack/gstmusepackdec.cpp:
12622           Fetch error return values. Fixes #161624.
12623         * gst/apetag/apedemux.c: (gst_ape_demux_stream_data):
12624           Really EOS.
12625
12626 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12627
12628         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index):
12629           Work for truncated (unfinished download etc.) files. Fixes #160514.
12630
12631 2004-12-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12632
12633         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
12634           Fix for integer overflow. Makes #156001 not crash. Probably masks
12635           the real bug.
12636
12637 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12638
12639         * gst/ac3parse/gstac3parse.c: (plugin_init):
12640           Parsers never have ranks. Fixes #159651.
12641
12642 2004-12-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12643
12644         * gst/playback/gstdecodebin.c: (compare_ranks):
12645           make sure the facotries are ordered the same every time even if they
12646           have the same rank by using the name
12647         * gst/playback/gstdecodebin.c: (find_compatibles):
12648           make sure we don't add factories to the list twice
12649
12650 2004-12-16  David Schleef  <ds@schleef.org>
12651
12652         * configure.ac: look for musepack headers as musepack/*.h
12653         (fixes #159847)
12654         * ext/musepack/gstmusepackdec.h: use <musepack/*.h>
12655         * ext/musepack/gstmusepackreader.h: same
12656
12657 2004-12-17  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12658
12659         * gst-libs/gst/riff/riff-read.c:
12660         (gst_riff_read_strf_auds_with_data):
12661           Read extradata correctly (fixes #155879).
12662
12663 2004-12-16  David Schleef  <ds@schleef.org>
12664
12665         * gst/audioscale/gstaudioscale.c: allow passthru of >2 channel
12666         audio.  does _not_ attempt or allow conversion unless channels
12667         is 1 or 2.
12668
12669 2004-12-16  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
12670
12671         * tools/gst-launch-ext-m.m: fix mpeg and vob pipelines
12672
12673 2004-12-16  David Schleef  <ds@schleef.org>
12674
12675         * gst/audioscale/gstaudioscale.c: the resample library only
12676         handles 1 or 2 channels.  Change caps to compensate.
12677
12678 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12679
12680         * gst/matroska/matroska-demux.c: (aac_rate_idx), (aac_profile_idx),
12681         (gst_matroska_demux_audio_caps):
12682           Some MPEG-AAC hacks, because else it doesn't work...
12683
12684 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12685
12686         * gst-libs/gst/riff/riff-media.c:
12687         (gst_riff_create_video_caps_with_data),
12688         (gst_riff_create_video_template_caps):
12689           Add h264.
12690
12691 2004-12-16  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12692
12693         * gst-libs/gst/audio/Makefile.am:
12694           Try to fix buildbot.
12695
12696 2004-12-16  Thomas Vander Stichele  <thomas at apestaart dot org>
12697
12698         * gst/tcp/gstmultifdsink.c:
12699           Clean up and uniformize debugging.
12700
12701 2004-12-16  Edward Hervey  <bilboed@bilboed.com>
12702
12703         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12704
12705         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
12706         (gst_dvd_demux_reset), (gst_dvd_demux_change_state):
12707         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset),
12708         (gst_mpeg_demux_change_state):
12709           Reset on ready. Fixes 160276.
12710
12711 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
12712
12713         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12714
12715         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
12716         (gst_ffmpegcsp_pad_link):
12717           Fix memleak (#154815).
12718
12719 2004-12-16  James Bowes  <bowes@cs.dal.ca>
12720
12721         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12722
12723         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init),
12724         (gst_musicbrainz_init), (gst_musicbrainz_chain),
12725         (gst_musicbrainz_set_property), (gst_musicbrainz_get_property):
12726         * ext/musicbrainz/gsttrm.h:
12727           Add support for using a proxy server when getting a trm id from
12728           the MusicBrainz database (#149613).
12729
12730 2004-12-16  Christophe Fergeau  <teuf@gnome.org>
12731
12732         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12733
12734         * gst/playback/gstdecodebin.c: (new_pad), (close_link):
12735         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
12736           Fix memleaks (#157233).
12737
12738 2004-12-16  Sebastien Cote  <sc5@hermes.usherb.ca>
12739
12740         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12741
12742         * gst-libs/gst/resample/resample.c: (gst_resample_close):
12743         * gst-libs/gst/resample/resample.h:
12744         * gst/audioscale/gstaudioscale.c:
12745           Fix memleak (#159215).
12746
12747 2004-12-16  Toni Willberg  <toniw@iki.fi>
12748
12749         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12750
12751         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
12752         * sys/oss/oss_probe.c: (main):
12753           Check for mono/stereo support (similar to samplerate probing),
12754           fixes #159433. Also add missing copyright header to oss_probe.c.
12755
12756 2004-12-15  David Schleef  <ds@schleef.org>
12757
12758         * configure.ac: add audioresample and cairo plugins.  Remove
12759         HAVE_MMX stuff, because it's not used.
12760         * ext/Makefile.am: same
12761         * ext/audioresample/Makefile.am: You are not ready for an
12762         audio resampling element based on audioresample.
12763         * ext/audioresample/gstaudioresample.c:
12764         * ext/audioresample/gstaudioresample.h:
12765         * ext/cairo/Makefile.am: You are not ready for overlay elements
12766         based on cairo.  Don't look too closely, these elements kinda
12767         suck right now.
12768         * ext/cairo/gstcairo.c: new
12769         * ext/cairo/gsttextoverlay.c: new
12770         * ext/cairo/gsttextoverlay.h: new
12771         * ext/cairo/gsttimeoverlay.c: new
12772         * ext/cairo/gsttimeoverlay.h: new
12773         * gst-libs/gst/media-info/media-info-priv.h: fix compile
12774         problem with compilers that don't support variadic macros.
12775
12776 2004-12-15  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
12777
12778         Reviewed by:  David Schleef  <ds@schleef.org>
12779
12780         * sys/sunaudio/gstsunaudio.c: (plugin_init):  Apply patch from
12781         Bala, registering sunaudiosrc (oops!), and cleaning up code a
12782         bit.  Also ran indent-gst.
12783         * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_init),
12784         (gst_sunaudiosrc_change_state), (gst_sunaudiosrc_get),
12785         (gst_sunaudiosrc_setparams):
12786
12787 2004-12-14  David Schleef  <ds@schleef.org>
12788
12789         * gst/festival/gstfestival.c: (gst_festival_chain): Set the
12790         output rate to 16000.  Should fix #160235.
12791
12792 2004-12-14  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12793
12794         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
12795         Add typefinding for mpeg2 pes streams
12796
12797 2004-12-13  David Schleef  <ds@schleef.org>
12798
12799         * configure.ac:  Applied patch from bug #143659, making default
12800         sources and sinks OS-dependent (for Solaris), and added code
12801         for OS/X.
12802         * gconf/gstreamer.schemas.in: use OS-dependent sinks in gconf.
12803
12804 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12805
12806         * gst-libs/gst/riff/riff-media.c:
12807           forgot to add h2.64 to avidemux template caps
12808
12809 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12810
12811         * gst/wavenc/riff.h:
12812         * gst-libs/gst/riff/riff-media.c:
12813         * gst-libs/gst/riff/riff-ids.h:
12814         * gst/avi/gstavimux.c
12815         add 4CC code for VideoSoft h264 in AVI (VSSH)
12816           fixes bug #160655
12817         remove s323 from riff, it's quicktime specific :(
12818
12819 2004-12-13  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12820
12821         * gst/asfdemux/README
12822         * gst/wavenc/riff.h
12823         * gst-libs/gst/riff/riff-ids.h
12824         * gst-libs/gst/riff/riff-media.c
12825         * gst/qtdemux/qtdemux.c:
12826           add new 4CC codes for h263 related codecs
12827           fixes partially bug #155163
12828
12829 2004-12-12  Christian Fredrik Kalager Schaller  <christian at fluendo dot com>
12830
12831         * configure.ac: Update polyaudio requirement to 0.7
12832         * ext/polyp/polypsink.c: (create_stream): add patch from iain (158258)
12833
12834 2004-12-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
12835
12836         * gst/interleave/deinterleave.c:
12837         fix my name's spelling! :)
12838
12839 2004-12-11  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
12840
12841         * AUTHORS ChangeLog
12842         * gst/auparse/gstauparse.c
12843         * gst/interleave/deinterleave.c
12844         * gst/law/:
12845                 alaw-decode.c alaw-encode.c
12846                 mulaw-decode.c mulaw-encode.c
12847         * gst/oneton/gstoneton.c
12848         * sys/osxaudio/:
12849                 gstosxaudioelement.c gstosxaudiosink.c gstosxaudiosrc.c
12850         * sys/osxvideo/:
12851                 cocoawindow.h cocoawindow.m
12852                 osxvideosink.h osxvideosink.m
12853
12854         put the same mail address for Zaheer Abbas Merali everywhere
12855
12856 2004-12-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12857
12858         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_loop):
12859           Align by packetsize, and assert that we a packet available before
12860           playing. The first makes webstreams work (they often include
12861           trailing padding data in a packet), the second allows pausing a
12862           ASF stream in totem without getting demux errors afterwards.
12863
12864 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12865
12866         * ext/ogg/gstoggdemux.c: (get_relative):
12867           Check for non-NULL before accessing member (end-of-chain).
12868
12869 2004-12-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12870
12871         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
12872         (cdparanoia_set_property), (cdparanoia_get_property):
12873         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
12874         (dvdnavsrc_set_property), (dvdnavsrc_get_property):
12875         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
12876         (dvdreadsrc_init), (dvdreadsrc_set_property),
12877         (dvdreadsrc_get_property):
12878         * sys/vcd/vcdsrc.c: (gst_vcdsrc_class_init),
12879         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property):
12880           Synchronize property names where not yet the case. Devices are
12881           now device=X, other versions are deprecated (but still exist).
12882           Also use g_free() unconditionally.
12883         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
12884         (setup_source), (gst_play_base_bin_get_property):
12885           Expose source.
12886
12887 2004-12-09  Thomas Vander Stichele  <thomas at apestaart dot org>
12888
12889         * configure.ac: move GCONF macro outside conditional for the am
12890           conditional. Fixes #160439
12891
12892 2004-12-08  David Schleef  <ds@schleef.org>
12893
12894         * tools/gst-visualise-m.m: Switch to elements that currently
12895         exist.
12896
12897 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12898
12899         * ext/ogg/gstogmparse.c: (gst_ogm_parse_chain):
12900           We love wrong commas.
12901
12902 2004-12-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12903
12904         * gst/matroska/matroska-demux.c:
12905         (gst_matroska_demux_handle_src_query):
12906           Don't set DEFAULT, unsupported - makes length display incorrectly
12907           in some cases.
12908
12909 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
12910
12911         * gst/monoscope/README: remove blurb about files being GPL
12912         * gst/monoscope/gstmonoscope.c: Change license field to LGPL
12913         * gst/monoscope/monoscope.c: Change license to BSD with explanation
12914           monoscope is now effectively LGPL licensed
12915
12916 2004-12-07  Christian Fredrik Kalager Schaller  <uraeus@gnome.org>
12917
12918         * gst/monoscope/README: Update information to be more correct
12919         * gst/monoscope/convolve.c: Relicense to LGPL
12920         * gst/monoscope/convolve.h: Relicense to LGPL
12921
12922 2004-12-06  Arwed v. Merkatz <v.merkatz@gmx.net>
12923
12924         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
12925           set BUFFER_DURATION to correct values (mpeg1 audio frame length is fixed)
12926         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link):
12927           set default_duration for mpeg1 audio
12928
12929 2004-12-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
12930
12931         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_close_audio):
12932         * ext/alsa/gstalsa.h:
12933           refactor big chunks of the core caps negotiation code to make it
12934           a lot faster, because people claim it's really slow
12935           (actually, just cache the getcaps when the device is opened)
12936
12937 2004-12-06  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12938
12939         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
12940         (gst_a52dec_handle_event), (gst_a52dec_update_streaminfo),
12941         (gst_a52dec_handle_frame), (gst_a52dec_chain),
12942         (gst_a52dec_change_state), (plugin_init):
12943         * ext/a52dec/gsta52dec.h:
12944           Do something useful with timestamps. Make chain-based (since
12945           there's really no reason to be loopbased).
12946         * gst/avi/gstavidemux.c: (gst_avi_demux_process_next_entry):
12947           Update current_byte/frame correctly.
12948
12949 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12950
12951         * gst/apetag/apedemux.c: (gst_ape_demux_parse_tags),
12952         (gst_ape_demux_stream_init):
12953           Forward tags, too.
12954
12955 2004-12-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12956
12957         * gst/apetag/apedemux.c: (gst_ape_demux_stream_init):
12958           Let's make sure we're done typefinding when detecting tags.
12959
12960 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12961
12962         * gst/matroska/ebml-read.c: (gst_ebml_read_class_init),
12963         (gst_ebml_read_init), (gst_ebml_read_use_event),
12964         (gst_ebml_read_element_id), (gst_ebml_peek_id),
12965         (gst_ebml_read_seek), (gst_ebml_read_skip),
12966         (gst_ebml_read_reserve), (gst_ebml_read_buffer),
12967         (gst_ebml_read_master):
12968         * gst/matroska/ebml-read.h:
12969         * gst/matroska/matroska-demux.c:
12970         (gst_matroska_demux_parse_contents),
12971         (gst_matroska_demux_loop_stream), (gst_matroska_demux_audio_caps):
12972           Disgustingly evil hack for working around INTERRUPT events and
12973           their extremely annoying habit of being a pain in the ass. We
12974           simply peek a cluster before reading any of it.
12975
12976 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12977
12978         * ext/musepack/gstmusepackdec.cpp:
12979           There's also floating point libmusepacks.
12980
12981 2004-12-03  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12982
12983         * ext/faad/gstfaad.c: (gst_faad_chanpos_from_gst),
12984         (gst_faad_chanpos_to_gst), (gst_faad_chain):
12985           Set DURATION even if source buffer didn't. Also use increasing
12986           timestamps.
12987         * gst-libs/gst/riff/riff-media.c:
12988         (gst_riff_create_audio_caps_with_data):
12989           Block_align can have larger values than 8192.
12990
12991 2004-12-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
12992
12993         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link):
12994         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link):
12995         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link):
12996         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link):
12997           Fix caps.
12998
12999 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13000
13001         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
13002           Fix logic bug.
13003
13004 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13005
13006         * ext/ogg/gstoggdemux.c: (gst_ogg_type_find):
13007           Yay, another one.
13008
13009 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13010
13011         * ext/esd/esdsink.c: (gst_esdsink_chain):
13012           Make error actually say something useful (fixes #156798).
13013         * gst-libs/gst/riff/riff-media.c:
13014         (gst_riff_create_video_caps_with_data),
13015         (gst_riff_create_video_template_caps):
13016           Add Intel Video 5.0 fourcc (IV50).
13017
13018 2004-12-01  Christophe Fergeau  <teuf@gnome.org>
13019
13020         * ext/mad/gstmad.c: (mpg123_parse_xing_header): fix xing header
13021         detection on mono and stereo mp3 files.
13022
13023 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13024
13025         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
13026           Don't crash on EMPTY caps (e.g. when the demuxer didn't recognize
13027           the contained stream).
13028
13029 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13030
13031         * ext/faad/gstfaad.c: (gst_faad_srcconnect), (gst_faad_chain):
13032           Oops, remove debug.
13033
13034 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
13035
13036         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13037
13038         * gst/law/alaw-decode.c: (alawdec_getcaps):
13039         * gst/law/mulaw-decode.c: (mulawdec_getcaps):
13040           Prevent warnings when negotiating caps (fixes #159338).
13041
13042 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13043
13044         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13045         (gst_ffmpegcsp_chain):
13046           Remove old leftover that shouldn't be there...
13047
13048 2004-12-01  Sebastien Cote  <sc5@hermes.usherb.ca>
13049
13050         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13051
13052         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_use_event):
13053           Don't forward DISCONT events (fixes #159684).
13054
13055 2004-12-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13056
13057         * gst/playback/gstplaybin.c: (remove_sinks), (setup_sinks):
13058           Unlink manually since sometimes bin disposal (and therefore
13059           pad unlinking) is delayed, which will cause a new media file
13060           to not be able to start playing instantly.
13061
13062 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13063
13064         * gst/playback/gststreaminfo.c: (stream_info_mute_pad):
13065           On mute of an unlinked stream, check for pad availability so
13066           we don't crash on unlinked pad.
13067
13068 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13069
13070         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
13071         (gst_avi_demux_massage_index):
13072           Fix quite humiliating bug in omitting 0-sized index chunks but
13073           forgetting to count them for timestamps.
13074
13075 2004-11-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13076
13077         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
13078           Actually leave the loop if we failed to sync. Don't crash.
13079
13080 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13081
13082         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
13083         (gst_dvd_demux_process_private):
13084         * gst/mpegstream/gstdvddemux.h:
13085           Fix crash (#159759). Doesn't work, though. :-(.
13086
13087 2004-11-28  Benjamin Otte  <otte@gnome.org>
13088
13089         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
13090           more overwriting protection due to modifying channels one by one
13091           instead of all at once
13092
13093 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13094
13095         * gst/audioconvert/gstchannelmix.c:
13096         (gst_audio_convert_fill_normalize):
13097           Normalize using absolute values.
13098
13099 2004-11-28  Julien MOUTTE  <julien@moutte.net>
13100
13101         * configure.ac:
13102         * ext/Makefile.am:
13103         * ext/directfb/Makefile.am:
13104         * ext/directfb/directfbvideosink.c: (gst_directfbvideosink_create),
13105         (gst_directfbvideosink_get_pixel_format),
13106         (gst_directfbvideosink_get_format_from_fourcc),
13107         (gst_directfbvideosink_fixate), (gst_directfbvideosink_getcaps),
13108         (gst_directfbvideosink_sink_link),
13109         (gst_directfbvideosink_change_state),
13110         (gst_directfbvideosink_chain), (gst_directfbvideosink_buffer_free),
13111         (gst_directfbvideosink_buffer_alloc),
13112         (gst_directfbvideosink_interface_supported),
13113         (gst_directfbvideosink_interface_init),
13114         (gst_directfbvideosink_navigation_send_event),
13115         (gst_directfbvideosink_navigation_init),
13116         (gst_directfbvideosink_set_property),
13117         (gst_directfbvideosink_get_property),
13118         (gst_directfbvideosink_finalize), (gst_directfbvideosink_init),
13119         (gst_directfbvideosink_base_init),
13120         (gst_directfbvideosink_class_init),
13121         (gst_directfbvideosink_get_type), (plugin_init):
13122         * ext/directfb/directfbvideosink.h: Adding a first version of
13123         directfbvideosink.
13124         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): Initializing some
13125         more.
13126
13127 2004-11-28  Benjamin Otte  <otte@gnome.org>
13128
13129         * gst/audioconvert/gstchannelmix.c: (gst_audio_convert_mix):
13130           walk the samples backwards if out_channels > in_channels so we don't
13131           overwrite data
13132
13133 2004-11-28  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13134
13135         * gst/audioconvert/Makefile.am:
13136         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
13137         (gst_audio_convert_link), (gst_audio_convert_change_state),
13138         (gst_audio_convert_channels):
13139         * gst/audioconvert/gstchannelmix.c:
13140         (gst_audio_convert_unset_matrix),
13141         (gst_audio_convert_fill_identical),
13142         (gst_audio_convert_fill_compatible),
13143         (gst_audio_convert_detect_pos), (gst_audio_convert_fill_one_other),
13144         (gst_audio_convert_fill_others),
13145         (gst_audio_convert_fill_normalize),
13146         (gst_audio_convert_fill_matrix), (gst_audio_convert_setup_matrix),
13147         (gst_audio_convert_passthrough), (gst_audio_convert_mix):
13148         * gst/audioconvert/gstchannelmix.h:
13149           Implement a channel mixer.
13150
13151 2004-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
13152
13153         * ext/alsa/gstalsasink.c (gst_alsa_sink_loop):
13154         * ext/alsa/gstalsa.h:
13155         * ext/alsa/gstalsa.c (gst_alsa_set_clock):
13156         Make alsasink actually honor gst_element_set_clock and use that
13157         clock instead of its internal one.
13158
13159 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
13160
13161         * gst/playback/gstplaybasebin.c: (setup_source): fixed a caps leak
13162         (gst_play_base_bin_change_state): nullify source and decoder when
13163         going from READY to NULL so that we don't try to do weird stuff with
13164         them when going from NULL to READY
13165         * gst/playback/gstplaybin.c: (gst_play_bin_init): use gst_object_unref
13166         instead of g_object_unref
13167         (gen_video_element), (gen_audio_element): more refcounting fixes, now
13168         it should be correct
13169         (gst_play_bin_change_state): don't call remove_sinks if we are
13170         currently disposing the object
13171
13172 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13173
13174         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop):
13175           Don't forget bass if it's there. Else left channel is silent...
13176
13177 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13178
13179         * ext/a52dec/gsta52dec.c: (gst_a52dec_loop),
13180         (gst_a52dec_change_state):
13181           Don't do sample adjusting anymore, we use float audio now.
13182         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
13183           Don't fixate to non-existing properties.
13184
13185 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13186
13187         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels),
13188         (gst_a52dec_change_state):
13189           Advertise that we can do surround sound.
13190
13191 2004-11-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13192
13193         * ext/a52dec/gsta52dec.c: (gst_a52dec_reneg):
13194           Add buffer-frames=0.
13195         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_get_type),
13196         (dvdreadsrc_init), (dvdreadsrc_get_event_mask),
13197         (dvdreadsrc_get_query_types), (dvdreadsrc_get_formats),
13198         (dvdreadsrc_srcpad_event), (dvdreadsrc_srcpad_query),
13199         (_seek_title), (_seek_chapter), (get_next_cell_for), (_read),
13200         (seek_sector), (dvdreadsrc_get), (dvdreadsrc_open_file),
13201         (dvdreadsrc_change_state), (dvdreadsrc_uri_get_type),
13202         (dvdreadsrc_uri_get_protocols), (dvdreadsrc_uri_get_uri),
13203         (dvdreadsrc_uri_set_uri), (dvdreadsrc_uri_handler_init):
13204         * ext/dvdread/dvdreadsrc.h:
13205           Add seeking, querying for bytes, sectors, title, angle and
13206           chapter. Handle multiple chapters. Relicense to LGPL because
13207           Billy agreed on that (thanks Billy!).
13208
13209 2004-11-27  Christophe Fergeau  <teuf@gnome.org>
13210
13211         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_dispose):
13212         call parent dispose method
13213
13214 2004-11-27  Martin Soto  <martinsoto@users.sourceforge.net>
13215
13216         * gst-libs/gst/audio/audioclock.c (gst_audio_clock_set_active)
13217         (gst_audio_clock_get_internal_time):
13218         Fix active <-> inactive transitions: ensure time value always
13219         grows and avoid abrupt value changes.
13220
13221 2004-11-27  Arwed v. Merkatz <v.merkatz@gmx.net>
13222
13223         * configure.ac:
13224         * gst/tta/Makefile.am:
13225         * gst/tta/crc32.h:
13226         * gst/tta/filters.h:
13227         * gst/tta/gsttta.c:
13228         * gst/tta/gstttadec.c:
13229         * gst/tta/gstttadec.h:
13230         * gst/tta/gstttaparse.c:
13231         * gst/tta/gstttaparse.h:
13232         * gst/tta/ttadec.h:
13233           added TTA parser and decoder
13234
13235 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13236
13237         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13238         (probe_triggered), (check_queue), (buffer_underrun),
13239         (buffer_running), (buffer_overrun), (gen_source_element),
13240         (setup_source):
13241         * gst/playback/gstplaybasebin.h:
13242           Implement buffering. Needs some more work.
13243
13244 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13245
13246         * ext/theora/theoradec.c: (theora_dec_chain):
13247           Fix ilog mask range overflow.
13248
13249 2004-11-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13250
13251         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
13252           Don't omit the last (which in case of dmix is the only :) )
13253           channel count. Don't set channels if <= 2.
13254
13255 2004-11-26  Christophe Fergeau  <teuf@gnome.org>
13256
13257         * gst/playback/gstplaybin.c: (gen_video_element),
13258         (gen_audio_element): Removed 2 obsolete comments
13259
13260 2004-11-26  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
13261
13262         * ext/vorbis/oggvorbisenc.c
13263         * ext/vorbis/vorbisenc.c :
13264           change description fields of those plugins to differentiate them
13265           (pitivi show Encoders by description, they had the same one)
13266
13267 2004-11-25  Christophe Fergeau  <teuf@gnome.org>
13268
13269         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13270
13271         * gst/playback/gstplaybin.c: (gst_play_bin_dispose),
13272         (gst_play_bin_set_property), (gen_video_element),
13273         (gen_audio_element):
13274           Refcounting fixes for provided audio-/videosinks.
13275
13276 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13277
13278         * gst/playback/gstplaybin.c: (gen_video_element),
13279         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state):
13280           Don't reference all sinks, but only the video- and audiosinks.
13281           The vis. element should be disposed when we're done with it.
13282           We don't have any reason to keep it around. This fixes warnings
13283           when reusing playbin for playing multiple audio files with
13284           vis. enabled. Also release audio device on pause - idea stolen
13285           from Rhythmbox.
13286
13287 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13288
13289         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
13290         (gst_a52dec_reneg), (gst_a52dec_loop), (plugin_init):
13291         * ext/alsa/gstalsa.c: (gst_alsa_get_caps):
13292         * ext/alsa/gstalsaplugin.c: (plugin_init):
13293         * ext/dts/gstdtsdec.c: (gst_dtsdec_channels),
13294         (gst_dtsdec_renegotiate), (gst_dtsdec_loop), (plugin_init):
13295         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_chanpos_from_gst),
13296         (gst_faad_chanpos_to_gst), (gst_faad_sinkconnect),
13297         (gst_faad_srcgetcaps), (gst_faad_srcconnect), (gst_faad_chain),
13298         (gst_faad_change_state), (plugin_init):
13299         * ext/faad/gstfaad.h:
13300         * ext/vorbis/vorbis.c: (plugin_init):
13301         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
13302         * gst-libs/gst/audio/Makefile.am:
13303         * gst-libs/gst/audio/audio.c: (plugin_init):
13304         * gst-libs/gst/audio/multichannel.c:
13305         (gst_audio_check_channel_positions),
13306         (gst_audio_get_channel_positions),
13307         (gst_audio_set_channel_positions),
13308         (gst_audio_set_structure_channel_positions_list),
13309         (add_list_to_struct), (gst_audio_set_caps_channel_positions_list),
13310         (gst_audio_fixate_channel_positions):
13311         * gst-libs/gst/audio/multichannel.h:
13312         * gst-libs/gst/audio/testchannels.c: (main):
13313         * gst/audioconvert/gstaudioconvert.c:
13314         (gst_audio_convert_class_init), (gst_audio_convert_init),
13315         (gst_audio_convert_dispose), (gst_audio_convert_getcaps),
13316         (gst_audio_convert_parse_caps), (gst_audio_convert_link),
13317         (gst_audio_convert_fixate), (gst_audio_convert_channels):
13318         * gst/audioconvert/plugin.c: (plugin_init):
13319           Surround sound support.
13320
13321 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13322
13323         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
13324           Fix position for discont if we're close as well. Nitpicking, but
13325           saves a few milliseconds of extra waiting or skipping.
13326
13327 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13328
13329         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter):
13330           We sometimes need parsers for playback, so add those too.
13331
13332 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13333
13334         * configure.ac:
13335         * gst/apetag/Makefile.am:
13336         * gst/apetag/apedemux.c: (gst_ape_demux_get_type),
13337         (gst_ape_demux_base_init), (gst_ape_demux_class_init),
13338         (gst_ape_demux_init), (gst_ape_demux_get_src_formats),
13339         (gst_ape_demux_get_src_query_types),
13340         (gst_ape_demux_handle_src_query), (gst_ape_demux_get_event_mask),
13341         (gst_ape_demux_handle_src_event), (gst_ape_demux_handle_event),
13342         (gst_ape_demux_typefind_peek), (gst_ape_demux_typefind_get_length),
13343         (gst_ape_demux_typefind_suggest), (gst_ape_demux_typefind),
13344         (gst_ape_demux_parse_tags), (gst_ape_demux_stream_init),
13345         (gst_ape_demux_stream_data), (gst_ape_demux_loop),
13346         (gst_ape_demux_change_state):
13347         * gst/apetag/apedemux.h:
13348         * gst/apetag/apetag.c: (plugin_init):
13349         * gst/typefind/gsttypefindfunctions.c: (apetag_type_find),
13350         (plugin_init):
13351           APE v1/2 tag reader plus typefind function.
13352
13353 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13354
13355         * configure.ac:
13356         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
13357         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
13358           Remove hacks for older core. Require newer core version
13359           accordingly.
13360
13361 2004-11-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13362
13363         * gst/cdxaparse/Makefile.am:
13364         * gst/cdxaparse/gstcdxaparse.c: (gst_cdxaparse_get_type),
13365         (gst_cdxaparse_class_init), (gst_cdxaparse_init),
13366         (gst_cdxaparse_loop), (gst_cdxaparse_change_state), (plugin_init):
13367         * gst/cdxaparse/gstcdxaparse.h:
13368         * gst/cdxaparse/gstcdxastrip.c: (gst_cdxastrip_get_type),
13369         (gst_cdxastrip_base_init), (gst_cdxastrip_class_init),
13370         (gst_cdxastrip_init), (gst_cdxastrip_get_src_formats),
13371         (gst_cdxastrip_get_src_query_types),
13372         (gst_cdxastrip_handle_src_query), (gst_cdxastrip_get_event_mask),
13373         (gst_cdxastrip_handle_src_event), (gst_cdxastrip_strip),
13374         (gst_cdxastrip_sync), (gst_cdxastrip_handle_event),
13375         (gst_cdxastrip_chain), (gst_cdxastrip_change_state):
13376         * gst/cdxaparse/gstcdxastrip.h:
13377           SVCD/VCD header stripping separated from CDXA image parsing.
13378         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
13379         (plugin_init):
13380           Add VCD/SVCD header typefinding for VCD/SVCD.
13381         * sys/vcd/vcdsrc.c: (gst_vcdsrc_get_type), (gst_vcdsrc_base_init),
13382         (gst_vcdsrc_class_init), (gst_vcdsrc_init),
13383         (gst_vcdsrc_set_property), (gst_vcdsrc_get_property),
13384         (gst_vcdsrc_get_event_mask), (gst_vcdsrc_get_query_types),
13385         (gst_vcdsrc_get_formats), (gst_vcdsrc_srcpad_event),
13386         (gst_vcdsrc_srcpad_query), (gst_vcdsrc_get),
13387         (gst_vcdsrc_open_file), (gst_vcdsrc_close_file),
13388         (gst_vcdsrc_change_state), (gst_vcdsrc_msf),
13389         (gst_vcdsrc_recalculate), (gst_vcdsrc_uri_get_type),
13390         (gst_vcdsrc_uri_get_protocols), (gst_vcdsrc_uri_get_uri),
13391         (gst_vcdsrc_uri_set_uri), (gst_vcdsrc_uri_handler_init):
13392         * sys/vcd/vcdsrc.h:
13393           Fix up, add seeking, querying, URI interface. Works in totem now.
13394
13395 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13396
13397         * configure.ac:
13398           back to CVS
13399
13400 === release 0.8.6 ===
13401
13402 2004-11-25  Thomas Vander Stichele  <thomas at apestaart dot org>
13403
13404         * NEWS:
13405         * RELEASE:
13406         * configure.ac:
13407         * po/af.po:
13408         * po/az.po:
13409         * po/cs.po:
13410         * po/en_GB.po:
13411         * po/hu.po:
13412         * po/it.po:
13413         * po/nb.po:
13414         * po/nl.po:
13415         * po/or.po:
13416         * po/sq.po:
13417         * po/sr.po:
13418         * po/sv.po:
13419         * po/uk.po:
13420           releasing 0.8.6, "IOU Love"
13421
13422 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13423
13424         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
13425
13426         * gst/playback/gstplaybasebin.c:
13427           Fix unplayable files error handling.  Fixes #158365
13428
13429 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13430
13431         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
13432
13433         * gst/typefind/gsttypefindfunctions.c:
13434           Fix broken mp3 typefinding.  Fixes #158375
13435
13436 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13437
13438         patch by: Ronald Bultje <rbultje@ronald.bitfreak.net>
13439
13440         * ext/ogg/gstoggdemux.c:
13441           Fix sync on broken files.  Fixes #158976
13442
13443 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13444
13445         patch by: Edward Hervey <bilboed@bilboed.com>
13446
13447         * ext/libpng/gstpngenc.c:
13448           Copy over buffer properties.  Fixes #158832
13449
13450 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13451
13452         patch by: Tim-Philipp M??ller <t.i.m@zen.co.uk>
13453
13454         * ext/dvdread/dvdreadsrc.c:
13455           Fixes invalid reads (#158462)
13456
13457 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13458
13459         * sys/v4l/gstv4lsrc.c:
13460         * sys/v4l/gstv4lsrc.h:
13461         * sys/v4l/v4lsrc_calls.c:
13462           Probe less and cache it.  Fixes #159187.
13463
13464 2004-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
13465
13466         * gst/videorate/gstvideorate.c:
13467           Handle all video formats. Fixes #159186.
13468
13469 2004-11-16  Jan Schmidt  <thaytan@mad.scientist.com>
13470         * gst/synaesthesia/gstsynaesthesia.c:
13471         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
13472         (gst_synaesthesia_dispose), (gst_synaesthesia_finalize),
13473         (gst_synaesthesia_sink_link), (gst_synaesthesia_src_getcaps),
13474         (gst_synaesthesia_src_link), (gst_synaesthesia_chain),
13475         (gst_synaesthesia_change_state), (plugin_init):
13476         Fix up synaesthesia to work under different samplerates/ buffer sizes.
13477         Force 320x200 output, as that's the only thing the underlying
13478         synaesthesia implementation supports. Still needs to be made
13479         re-entrant.
13480
13481 2004-11-14  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13482
13483         * configure.ac:
13484           Fix mpeg2enc configure check (similar to mplex check below).
13485
13486 2004-11-14  Koop Mast  <kwm@rainbow-runner.nl>
13487
13488         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13489
13490         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13491           Fix for gcc-2.95 (fixes #158221).
13492
13493 2004-11-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13494
13495         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
13496           Re-add clock distribution hack (until new core is released).
13497           Fixes #158125.
13498
13499 2004-11-13  Arwed v. Merkatz  <v.merkatz@gmx.net>
13500         * configure.ac:
13501           fix mplex configure check segfaulting on some systems (bug #140994)
13502
13503 2004-11-13  Benjamin Otte  <otte@gnome.org>
13504
13505         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait):
13506           add debugging
13507         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
13508           do a wait when we enter the loop func with no data available to
13509           write instead of getting into an 100% CPU loop by just returning and
13510           being called again by the scheduler
13511
13512 2004-11-13  Jan Schmidt  <thaytan@mad.scientist.com>
13513
13514         * configure.ac:
13515         * ext/libvisual/visual.c: (gst_visual_get_type),
13516         (libvisual_log_handler), (gst_visual_getcaps),
13517         (gst_visual_srclink), (gst_visual_change_state), (make_valid_name),
13518         (plugin_init):
13519           Update libvisual to 0.1.7. Link in the debug handling to gstreamer
13520         * ext/smoothwave/Makefile.am:
13521         * ext/smoothwave/demo-osssrc.c: (main):
13522         * ext/smoothwave/gstsmoothwave.c: (gst_smoothwave_class_init),
13523         (gst_smoothwave_init), (gst_smoothwave_dispose), (gst_sw_sinklink),
13524         (gst_sw_srclink), (gst_smoothwave_chain), (gst_sw_change_state),
13525         (plugin_init):
13526         * ext/smoothwave/gstsmoothwave.h:
13527           Make gstsmoothwave a working element in the 20th century.
13528
13529         * gst/chart/gstchart.c: (gst_chart_init), (gst_chart_srcconnect):
13530           Fix incorrect link function
13531
13532 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13533
13534         * gst/volume/gstvolume.c:
13535           Allow buffer-frames=0.
13536
13537 2004-11-12 Iain <iaingnome@gmail.com>
13538
13539         * configure.ac: Check for polypaudio
13540
13541         * ext/Makefile.am: Build the polyp dir
13542
13543         * ext/polyp: The polypsink sources.
13544
13545 2004-10-30 Iain <iaingnome@gmail.com>
13546
13547         * gst/interleave/interleave.c (interleave_unlink): Change the src pads
13548         caps to reflect the new number of channels.
13549
13550 2004-11-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13551
13552         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
13553           Fix for negotiation order problem. This would show when the
13554           ALSA loopfuction was called before any other function. ALSA
13555           wouldn't do anything because we're not negotiated yet, leading
13556           to an infinite loop. Showed in e.g. Rhythmbox. Fixes #158006.
13557
13558 2004-11-11  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13559
13560         reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13561
13562         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query):
13563           No warnings (#157986).
13564
13565 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13566
13567         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
13568           Prefer apev1/2 and id3v1 (at end of file) over musepack.
13569
13570 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13571
13572         * gst/matroska/matroska-demux.c: (gst_matroska_demux_loop_stream):
13573           Signal no-more-pads (so it works in playbin).
13574
13575 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13576
13577         * ext/musepack/gstmusepackreader.cpp:
13578           Workaround for older core.
13579
13580 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13581
13582         * gst/ffmpegcolorspace/imgconvert.c: (yuv420p_to_yuv422):
13583           Actually test for odd width/height rather than testing whether
13584           a temporary variable that was 0 before we subtracted 1 is now
13585           not equal to zero (which it always is).
13586
13587 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13588
13589         * sys/v4l2/gstv4l2element.c: (gst_v4l2_iface_supported):
13590         Fix compilation if HAVE_XVIDEO is not defined
13591
13592 2004-11-11  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
13593
13594         * sys/v4l/gstv4lelement.c: (gst_v4l_iface_supported):
13595         Fix compilation if HAVE_XVIDEO is not defined
13596
13597 2004-11-11  Jan Schmidt  <thaytan@mad.scientist.com>
13598
13599         * gst/goom/gstgoom.c: (gst_goom_class_init), (gst_goom_init),
13600         (gst_goom_dispose), (gst_goom_sinkconnect), (gst_goom_chain),
13601         (gst_goom_change_state), (plugin_init):
13602         Use the bytestream adapter so goom doesn't depend on the input
13603         buffer size.
13604         Add a debug category
13605
13606 2004-11-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13607
13608         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
13609           Only set hardware parameters *after* negotiation. Before
13610           negotiation, it will set ANY and that seems to cause crashes
13611           (see e.g. #151288, #153227).
13612
13613 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13614
13615         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
13616           This seems to be antique leftover. It needs to pass error
13617           checking.
13618         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
13619         (gst_sdlvideosink_deinitsdl), (gst_sdlvideosink_initsdl),
13620         (gst_sdlvideosink_destroy), (gst_sdlvideosink_create),
13621         (gst_sdlvideosink_sinkconnect), (gst_sdlvideosink_chain):
13622           Fix GstXOverlay implementation (#151059).
13623
13624 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13625
13626         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
13627           Don't assert (#157853).
13628
13629 2004-11-10  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13630
13631         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
13632           Fix bytes/samples confustion.
13633         (gst_alsa_sink_mmap), (gst_alsa_sink_loop):
13634           Fix for underrun (#144389).
13635
13636 2004-11-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13637
13638         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
13639           Disable halfway-seek for pending release (since it needs a new
13640           core release).
13641
13642 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13643
13644         * sys/v4l/gstv4lsrc.c:
13645         * sys/v4l/gstv4lsrc.h:
13646         * sys/v4l/v4lsrc_calls.c:
13647           add autoprobe-fps property so we can separate autoprobing parts
13648
13649 2004-11-09  Thomas Vander Stichele  <thomas at apestaart dot org>
13650
13651         * sys/v4l/gstv4lsrc.c:
13652         * sys/v4l/v4lsrc_calls.c:
13653         initialise fourcc to catch unset fourcc's, and debug
13654
13655 2004-11-09  Wim Taymans  <wim@fluendo.com>
13656
13657         * gst/playback/README:
13658         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
13659         * gst/playback/gstplaybin.c: (gst_play_bin_init),
13660         (gst_play_bin_dispose), (gst_play_bin_set_property),
13661         (remove_sinks), (setup_sinks), (gst_play_bin_change_state),
13662         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
13663         (gst_play_bin_get_formats), (gst_play_bin_convert),
13664         (gst_play_bin_get_query_types), (gst_play_bin_query):
13665         Cleanups and some more documentation.
13666
13667 2004-11-09  Jan Schmidt  <thaytan@mad.scientist.com>
13668
13669         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
13670         (gst_cacasink_init), (gst_cacasink_chain):
13671         * ext/libcaca/gstcacasink.h:
13672         Cacasink inherits from VideoSink, so let that store the clock.
13673
13674 2004-11-09  Wim Taymans  <wim@fluendo.com>
13675
13676         * gst/playback/README:
13677         * gst/playback/gstplaybasebin.c: (group_destroy), (group_is_muted),
13678         (add_stream), (unknown_type), (add_element_stream), (no_more_pads),
13679         (probe_triggered), (preroll_unlinked), (new_decoded_pad),
13680         (gst_play_base_bin_change_state), (gst_play_base_bin_found_tag):
13681         * gst/playback/gstplaybin.c: (gen_vis_element), (remove_sinks),
13682         (setup_sinks):
13683         * gst/playback/gststreaminfo.c: (gst_stream_info_set_mute),
13684         (gst_stream_info_is_mute), (gst_stream_info_set_property):
13685         * gst/playback/gststreaminfo.h:
13686         Updated README.
13687         Only switch groups if all streams have muted (EOSed).
13688         Send Tags in sync with the stream playback instead of in
13689         the playback/preroll phase.
13690         Some cleanups, free the fakesrc elements.
13691
13692 2004-11-09  Benjamin Otte  <in7y118@public.uni-hamburg.de>
13693
13694         * ext/alsa/gstalsa.c: (gst_alsa_get_caps_internal):
13695           buffer-frames property was missing
13696         * ext/arts/gst_arts.c:
13697           rate missing from sinkcaps
13698         * ext/audiofile/gstafparse.c:
13699         * ext/audiofile/gstafsink.c:
13700         * ext/audiofile/gstafsrc.c:
13701         * ext/swfdec/gstswfdec.c:
13702           int audio doesn't know buffer-frames
13703         * ext/cdparanoia/gstcdparanoia.c:
13704           int audio doesn't know chunksize either
13705         * ext/nas/nassink.c:
13706           it's endianness, not endianess
13707         * gst-libs/gst/audio/audio.h:
13708           make float standard pad template caps really describe float
13709         * gst/law/mulaw.c: (linear_factory):
13710           signed only, please
13711         * gst/mpegstream/gstdvddemux.c:
13712           widths of 20 are not valid
13713
13714 2004-11-08  Thomas Vander Stichele  <thomas at apestaart dot org>
13715
13716         Submitted by: Luca Ferretti <elle.uca@infinito.it>
13717
13718         * po/LINGUAS:
13719         * po/it.po:
13720           Add Italian
13721
13722 2004-11-08  Wim Taymans  <wim@fluendo.com>
13723
13724         * gst/playback/README:
13725         * gst/playback/gstdecodebin.c: (close_pad_link), (try_to_link_1):
13726         * gst/playback/gstplaybasebin.c: (probe_triggered),
13727         (gst_play_base_bin_change_state):
13728         Updated README, added more comments for fixmes etc..
13729
13730 2004-11-08  Wim Taymans  <wim@fluendo.com>
13731
13732         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_add_element):
13733         We can remove this hack now.
13734
13735 2004-11-08  Wim Taymans  <wim@fluendo.com>
13736
13737         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_ayuv),
13738         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
13739         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
13740         Only mix AYUV for maximum quality.
13741
13742 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13743
13744         * ext/ogg/gstoggdemux.c: (get_relative), (gst_ogg_demux_src_query),
13745         (gst_ogg_demux_push), (gst_ogg_pad_push):
13746           Let's act as if we're synchronized now! :).
13747         * ext/theora/theoradec.c: (theora_dec_chain):
13748           Add some debug.
13749
13750 2004-11-08  Wim Taymans  <wim@fluendo.com>
13751
13752         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
13753         (gst_alpha_set_property), (gst_alpha_sink_link),
13754         (gst_alpha_set_ayuv), (gst_alpha_set_i420),
13755         (gst_alpha_chroma_key_ayuv), (gst_alpha_chroma_key_i420),
13756         (gst_alpha_init_params), (gst_alpha_chain):
13757         Implement alpha functions for AYUV too, this increases
13758         accuracy quite a bit.
13759
13760 2004-11-08  Wim Taymans  <wim@fluendo.com>
13761
13762         * gst/ffmpegcolorspace/avcodec.h:
13763         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13764         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_caps_to_pixfmt),
13765         (gst_ffmpegcsp_avpicture_fill):
13766         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
13767         (gst_ffmpegcsp_caps_remove_format_info):
13768         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
13769         (shrink12), (img_get_alpha_info), (deinterlace_line),
13770         (deinterlace_line_inplace):
13771         * gst/ffmpegcolorspace/imgconvert_template.h:
13772         Added AYUV colorspace and handle RGBA a bit more respectful.
13773
13774 2004-11-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13775
13776         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
13777           Actually always send a discont (cornercase when resending the
13778           same serial-tagged chain twice).
13779
13780 2004-11-08  Julien MOUTTE  <julien@moutte.net>
13781
13782         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_clear),
13783         (gst_ximagesink_finalize):
13784         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_clear),
13785         (gst_xvimagesink_finalize): Some more cleanups, leaks fixed and checks.
13786
13787 2004-11-08  Wim Taymans  <wim@fluendo.com>
13788
13789         * gst/typefind/gsttypefindfunctions.c: (aac_type_find):
13790         Don't segfault on NULL data.
13791
13792 2004-11-08  Wim Taymans  <wim@fluendo.com>
13793
13794         * gst/playback/gstdecodebin.c: (unlinked):
13795         * gst/playback/gstplay-marshal.list:
13796         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
13797         (gst_play_base_bin_init), (group_create), (get_active_group),
13798         (get_building_group), (group_destroy), (group_commit),
13799         (queue_overrun), (remove_groups), (add_stream), (unknown_type),
13800         (add_element_stream), (no_more_pads), (probe_triggered),
13801         (preroll_unlinked), (new_decoded_pad), (removed_decoded_pad),
13802         (state_change), (setup_source), (gst_play_base_bin_get_property),
13803         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
13804         (gst_play_base_bin_link_stream),
13805         (gst_play_base_bin_get_streaminfo):
13806         * gst/playback/gstplaybasebin.h:
13807         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
13808         (remove_sinks), (setup_sinks), (gst_play_bin_change_state):
13809         Add support for chained ogg files. Prepare for playlist
13810         support. This patch introduces the concept of pad groups, which
13811         together compose one playable media file.
13812
13813 2004-11-07  David Schleef  <ds@schleef.org>
13814
13815         * testsuite/gst-lint: Check for pad templates that aren't statically
13816         scoped.
13817
13818 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13819
13820         * configure.ac:
13821         * ext/Makefile.am:
13822         * ext/musepack/Makefile.am:
13823         * ext/musepack/gstmusepackdec.cpp:
13824         * ext/musepack/gstmusepackdec.h:
13825         * ext/musepack/gstmusepackreader.cpp:
13826         * ext/musepack/gstmusepackreader.h:
13827           Add musepack decoder.
13828         * ext/faad/gstfaad.c: (gst_faad_base_init):
13829           Make pad templates static.
13830         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
13831         (plugin_init):
13832           Add musepack typefinder, make mp3 typefinding work halfway stream,
13833           which doesn't actually work yet because id3demux doesn't implement
13834           _get_length().
13835
13836 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13837
13838         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
13839         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop):
13840           Fix interrupt event handling (#144436).
13841
13842 2004-11-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13843
13844         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind):
13845           Hide unused glory.
13846
13847 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13848
13849         reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13850
13851         * ext/vorbis/vorbisenc.c: (raw_caps_factory):
13852           Fix weird caps (#157548).
13853
13854 2004-11-06  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
13855
13856         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13857
13858         * gst/rtp/gstrtpgsmparse.c: (gst_rtpgsm_caps_nego):
13859           Add missing NULL terminator (#157543).
13860
13861 2004-11-05  Thomas Vander Stichele  <thomas at apestaart dot org>
13862
13863         * gst/tcp/gsttcp.h:
13864         * gst/tcp/gsttcpclientsink.c:
13865         * gst/tcp/gsttcpclientsrc.c:
13866         * gst/tcp/gsttcpserversink.c:
13867         * gst/tcp/gsttcpserversrc.c:
13868           ports can go up to 65535.  Move common defines to gsttcp.h
13869
13870 2004-11-05  Wim Taymans  <wim@fluendo.com>
13871
13872         * gst/videotestsrc/videotestsrc.c: (paint_setup_Y41B),
13873         (paint_hline_Y41B), (paint_setup_Y42B), (paint_hline_Y42B):
13874         Added two more colorspaces.
13875
13876 2004-11-05  Wim Taymans  <wim@fluendo.com>
13877
13878         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13879         (gst_ffmpegcsp_avpicture_fill):
13880         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
13881         (yuv422p_to_yuv422), (yuv420p_to_yuv422), (shrink12),
13882         (img_convert), (deinterlace_line), (deinterlace_line_inplace):
13883         More stride fixes.
13884
13885 2004-11-05  Wim Taymans  <wim@fluendo.com>
13886
13887         * gst/alpha/gstalpha.c: (gst_alpha_set_property), (gst_alpha_add),
13888         (gst_alpha_chroma_key), (gst_alpha_init_params), (gst_alpha_chain):
13889         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
13890         (gst_videomixer_fill_checker), (gst_videomixer_blend_buffers),
13891         (gst_videomixer_loop):
13892         More stride fixes.
13893
13894 2004-11-05  Benjamin Otte  <otte@gnome.org>
13895
13896         * ext/mad/gstmad.c: (gst_mad_chain):
13897           don't overflow data buffer. Flush not needed sync data when syncing
13898           failed.
13899
13900 2004-11-04  Wim Taymans  <wim@fluendo.com>
13901
13902         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
13903         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
13904         (gst_alpha_get_property), (gst_alpha_add), (gst_alpha_chroma_key),
13905         (gst_alpha_init_params), (gst_alpha_chain),
13906         (gst_alpha_change_state):
13907         Updated the chroma keying algorithm with something more
13908         sophisticated.
13909
13910 2004-11-03  Wim Taymans  <wim@fluendo.com>
13911
13912         * gst/videomixer/videomixer.c: (gst_videomixer_blend_ayuv_i420),
13913         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
13914         (gst_videomixer_blend_buffers), (gst_videomixer_loop):
13915         Fix stride issues. Does not completely work for odd
13916         heights.
13917
13918 2004-11-03  Wim Taymans  <wim@fluendo.com>
13919
13920         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
13921         (gst_alpha_chroma_key), (gst_alpha_chain):
13922         Fix stride issues. Does not completely work for odd
13923         heights.
13924
13925 2004-11-03  Christophe Fergeau  <teuf@gnome.org>
13926
13927         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
13928         * gst/videoscale/videoscale.c: (videoscale_find_by_structure):
13929         leak fixes
13930
13931 2004-11-03  Wim Taymans  <wim@fluendo.com>
13932
13933         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
13934         (gst_ffmpegcsp_avpicture_fill):
13935         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_get_size),
13936         (avpicture_alloc):
13937         * gst/ffmpegcolorspace/imgconvert_template.h:
13938         Use correct _fill function to get correct strides.
13939
13940 2004-11-02  David Schleef  <ds@schleef.org>
13941
13942         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
13943         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_parse_tree),
13944         (qtdemux_parse_udta), (qtdemux_tag_add), (gst_qtdemux_handle_esds):
13945         Change all g_print()s to debugging.  Add a bunch of consistency
13946         checks.
13947
13948 2004-11-02  Wim Taymans  <wim@fluendo.com>
13949
13950         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13951         (try_to_link_1), (get_our_ghost_pad), (remove_element_chain),
13952         (unlinked), (no_more_pads), (close_link):
13953         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_init),
13954         (unknown_type), (add_element_stream), (new_decoded_pad),
13955         (removed_decoded_pad), (setup_source):
13956         * gst/playback/gststreaminfo.c: (gst_stream_info_get_type),
13957         (gst_stream_info_class_init), (gst_stream_info_init),
13958         (gst_stream_info_new), (gst_stream_info_dispose),
13959         (stream_info_mute_pad), (gst_stream_info_set_property),
13960         (gst_stream_info_get_property):
13961         * gst/playback/gststreaminfo.h:
13962         Fix playback of multiple files.
13963         a slightly different approach to handling dynamic pad removals.
13964         This one only looks at pads that we have linked.
13965
13966 2004-11-01  Christophe Fergeau  <teuf@gnome.org>
13967
13968         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_finalize): fix an "invalid
13969         free" warning from libc.
13970
13971 2004-11-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
13972
13973         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
13974         (get_unconnected_element), (remove_starting_from), (pad_removed),
13975         (close_link):
13976           Implement support for dynamic pad changing. We listen to "live"
13977           pad removals (i.e. while playing) and re-setup autoplugging
13978           after that. Playbasebin/playbin need some more work for this
13979           to finally work, but decodebin supports (and replugs) chained
13980           ogg now.
13981
13982 2004-11-02  Jan Schmidt  <thaytan@mad.scientist.com>
13983
13984         * ext/alsa/gstalsa.c: (gst_alsa_class_init), (gst_alsa_dispose),
13985         (gst_alsa_finalize):
13986         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init),
13987         (gst_cdaudio_finalize):
13988         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
13989         (cdparanoia_finalize):
13990         * ext/divx/gstdivxdec.c: (gst_divxdec_dispose):
13991         * ext/divx/gstdivxenc.c: (gst_divxenc_dispose):
13992         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
13993         (dvdreadsrc_finalize):
13994         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
13995         (gst_flacdec_finalize):
13996         * ext/flac/gstflacenc.c: (gst_flacenc_class_init),
13997         (gst_flacenc_finalize):
13998         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_class_init),
13999         (gst_gnomevfssink_finalize):
14000         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_class_init),
14001         (gst_gnomevfssrc_finalize):
14002         * ext/libfame/gstlibfame.c: (gst_fameenc_class_init),
14003         (gst_fameenc_finalize):
14004         * ext/nas/nassink.c: (gst_nassink_class_init),
14005         (gst_nassink_finalize):
14006         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_finalize),
14007         (gst_sdlvideosink_class_init):
14008         * ext/sndfile/gstsf.c: (gst_sf_dispose):
14009         * gst-libs/gst/mixer/mixertrack.c: (gst_mixer_track_dispose):
14010         * gst-libs/gst/tuner/tunerchannel.c: (gst_tuner_channel_dispose):
14011         * gst-libs/gst/tuner/tunernorm.c: (gst_tuner_norm_dispose):
14012         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
14013         (gst_x_window_listener_dispose):
14014         * gst/audioscale/gstaudioscale.c:
14015         * gst/playondemand/gstplayondemand.c: (play_on_demand_class_init),
14016         (play_on_demand_finalize):
14017         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose):
14018         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
14019         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init),
14020         (cdplayer_finalize):
14021         * sys/glsink/glimagesink.c: (gst_glimagesink_finalize),
14022         (gst_glimagesink_class_init):
14023         * sys/oss/gstosselement.c: (gst_osselement_class_init),
14024         (gst_osselement_finalize):
14025         * sys/oss/gstosssink.c: (gst_osssink_dispose):
14026         * sys/oss/gstosssrc.c: (gst_osssrc_dispose):
14027         * sys/v4l/gstv4lelement.c: (gst_v4lelement_dispose):
14028           Fixes a bunch of problems with finalize and dispose functions,
14029           either assumptions that dispose is only called once, or not calling
14030           the parent class dispose/finalize function
14031
14032 2004-11-01  Stefan Kost  <ensonic@users.sf.net>
14033
14034         * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_link):
14035           added two api precondition guards
14036           use g_strdup with getenv to fix crash when using ENVVAR
14037
14038 2004-11-01  Jan Schmidt  <thaytan@mad.scientist.com>
14039         * ext/esd/esdsink.c: (gst_esdsink_class_init),
14040         (gst_esdsink_finalize):
14041         Use a finalize function, not dispose, and more importantly,
14042         call the parent class finalize function too
14043
14044 2004-11-01  Johan Dahlin  <johan@gnome.org>
14045
14046         * ext/ogg/gstoggdemux.c:
14047         * gst/tags/gstvorbistag.c:
14048         Plug leaks.
14049
14050 2004-10-31  Benjamin Otte  <otte@gnome.org>
14051
14052         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
14053           lotsa memleaks today. But they're all small...
14054
14055 2004-10-31  Benjamin Otte  <otte@gnome.org>
14056
14057         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14058           another memleak crushed
14059
14060 2004-10-31  Benjamin Otte  <otte@gnome.org>
14061
14062         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
14063           fix memleak
14064
14065 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14066
14067         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14068           Hack to prevent crash when going to READY inside signal handler
14069           while this function is active.
14070
14071 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14072
14073         * gst/ffmpegcolorspace/Makefile.am:
14074         * gst/ffmpegcolorspace/avcodec.h:
14075         * gst/ffmpegcolorspace/common.h:
14076         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
14077         * gst/ffmpegcolorspace/dsputil.h:
14078         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
14079         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
14080         (gst_ffmpeg_get_palette), (gst_ffmpeg_set_palette),
14081         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_smpfmt_to_caps),
14082         (gst_ffmpegcsp_codectype_to_caps), (gst_ffmpeg_caps_to_smpfmt),
14083         (gst_ffmpeg_caps_to_pixfmt), (gst_ffmpegcsp_caps_with_codectype),
14084         (gst_ffmpegcsp_avpicture_fill):
14085         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
14086         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
14087         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
14088         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_get_type),
14089         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
14090         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
14091         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
14092         (gst_ffmpegcsp_get_property), (gst_ffmpegcolorspace_register):
14093         * gst/ffmpegcolorspace/imgconvert.c:
14094         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
14095         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
14096         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
14097         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
14098         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
14099         (yuv422_to_yuv420p), (uyvy422_to_yuv420p), (uyvy422_to_yuv422p),
14100         (yuv422_to_yuv422p), (yuv422p_to_yuv422), (yuv422p_to_uyvy422),
14101         (uyvy411_to_yuv411p), (yuv420p_to_yuv422), (C_JPEG_TO_CCIR),
14102         (img_convert_init), (img_apply_table), (shrink41), (shrink21),
14103         (shrink12), (shrink22), (shrink44), (grow21_line), (grow41_line),
14104         (grow21), (grow22), (grow41), (grow44), (conv411),
14105         (gif_clut_index), (build_rgb_palette), (bitcopy_n), (mono_to_gray),
14106         (monowhite_to_gray), (monoblack_to_gray), (gray_to_mono),
14107         (gray_to_monowhite), (gray_to_monoblack), (avpicture_alloc),
14108         (avpicture_free), (is_yuv_planar), (img_convert),
14109         (get_alpha_info_pal8), (img_get_alpha_info), (deinterlace_line),
14110         (deinterlace_line_inplace), (deinterlace_bottom_field),
14111         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
14112         * gst/ffmpegcolorspace/imgconvert_template.h:
14113         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
14114         * gst/ffmpegcolorspace/mmx.h:
14115         * gst/ffmpegcolorspace/utils.c: (av_mallocz), (av_strdup),
14116         (av_fast_realloc), (av_mallocz_static), (av_free_static),
14117         (av_freep), (avcodec_get_context_defaults),
14118         (avcodec_alloc_context), (avcodec_init):
14119           Sync back from gst-ffmpeg. Deprecates ffcolorspace. Adds palette
14120           handling plus update from ffmpeg CVS. Large clean-up.
14121
14122 2004-10-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14123
14124         * gst/playback/Makefile.am:
14125           We need the marshallers for decodebin, too.
14126
14127 2004-10-30  David Schleef  <ds@schleef.org>
14128
14129         * gst/typefind/gsttypefindfunctions.c: (qt_type_find): Make
14130           quicktime typefinding work with 64-bit offsets.
14131
14132 2004-10-30  Jan Schmidt  <thaytan@mad.scientist.com>
14133
14134         * ext/dv/gstdvdec.c: (gst_dvdec_handle_sink_event):
14135           Set EOS on the element when processing an EOS event.
14136         * ext/speex/gstspeexdec.h:
14137         * ext/speex/gstspeexenc.h:
14138           Only keep a const ptr to the mode
14139         * gst-libs/gst/riff/riff-media.c:
14140         (gst_riff_create_audio_caps_with_data),
14141         (gst_riff_create_audio_template_caps):
14142           Allow WMAV3, with up to 6 channels.
14143         * gst/asfdemux/gstasfmux.c: (gst_asfmux_request_new_pad):
14144           Don't call gst_pad_set_event_function on a sink pad.
14145         * gst/mpegstream/gstdvddemux.c:
14146         (gst_dvd_demux_get_subpicture_stream),
14147         (gst_dvd_demux_set_cur_audio), (gst_dvd_demux_set_cur_subpicture):
14148           Copy the explicit caps that were set across to the cur_* pads,
14149           instead of trying to use a possibly non-existent negotiated caps.
14150           Reset the type of subpicture pads to UNKNOWN after calling
14151           init_stream, so that the caps get set.
14152
14153 2004-10-29  Martin Pitt  <martin.pitt@canonical.com>
14154
14155         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14156
14157         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
14158           Don't touch buffer if it is of size 0 (fixes #151064).
14159
14160 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14161
14162         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push), (gst_ogg_pad_push):
14163           Synchronized discont handling.
14164
14165 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14166
14167         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
14168         (gst_ogg_demux_push):
14169           Make seeking sort-of exact again (fixes #156387).
14170
14171 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14172
14173         * gst/playback/gstplaybasebin.c: (unknown_type),
14174         (add_element_stream), (new_decoded_pad),
14175         (gst_play_base_bin_change_state):
14176         * gst/playback/gststreaminfo.c: (gst_stream_info_class_init),
14177         (gst_stream_info_init), (gst_stream_info_new),
14178         (gst_stream_info_dispose), (gst_stream_info_get_property):
14179         * gst/playback/gststreaminfo.h:
14180           Make caps explicitely available. Makes testing for unsupported
14181           types possible. Improves error reporting.
14182
14183 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14184
14185         * gst/audioconvert/gstaudioconvert.c:
14186         (gst_audio_convert_buffer_to_default_format):
14187           Really don't touch read-only buffers (#156563).
14188
14189 2004-10-29  Sebastien Cote  <sc5@hermes.usherb.ca>
14190
14191         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14192
14193         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
14194           Fix memleak (#155223).
14195
14196 2004-10-29  Wim Taymans  <wim@fluendo.com>
14197
14198         * gst/tcp/.cvsignore:
14199         * gst/tcp/gstmultifdsink.c: (gst_sync_method_get_type),
14200         (gst_multifdsink_class_init), (gst_multifdsink_init),
14201         (gst_multifdsink_add), (gst_multifdsink_remove),
14202         (gst_multifdsink_remove_client_link), (is_sync_frame),
14203         (gst_multifdsink_new_client),
14204         (gst_multifdsink_handle_client_write),
14205         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14206         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
14207         (gst_multifdsink_get_property):
14208         * gst/tcp/gstmultifdsink.h:
14209         Added burst on connect sync_method, deprecated sync_clients,
14210         streamlined the sync code some more.
14211
14212 2004-10-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14213
14214         * gst/playback/gstplaybasebin.c: (thread_error), (setup_source),
14215         (gst_play_base_bin_change_state):
14216           Improve error reporting.
14217
14218 2004-10-28  Wim Taymans  <wim@fluendo.com>
14219
14220         * gst/tcp/Makefile.am:
14221         * gst/tcp/fdsetstress.c: (mess_some_more), (run_test), (main):
14222         * gst/tcp/gstfdset.c: (nearest_pow), (resize), (ensure_size),
14223         (gst_fdset_new), (gst_fdset_free), (gst_fdset_set_mode),
14224         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
14225         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
14226         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
14227         (gst_fdset_wait):
14228         Added more locks around fdset structures. Fixed/reworked
14229         the poll array resizing code.
14230         Added stress test for fdset.
14231
14232 2004-10-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14233
14234         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
14235         fix build
14236
14237 2004-10-28  Benjamin Otte  <otte@gnome.org>
14238
14239         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link):
14240           fix link function to always query channels and query width for
14241           floats
14242         * configure.ac:
14243           add equalizer dir
14244         * gst/equalizer/Makefile.am:
14245         * gst/equalizer/gstiirequalizer.c: (gst_iir_equalizer_get_type),
14246         (gst_iir_equalizer_base_init), (gst_iir_equalizer_class_init),
14247         (gst_iir_equalizer_init), (gst_iir_equalizer_finalize),
14248         (arg_to_scale), (setup_filter),
14249         (gst_iir_equalizer_compute_frequencies),
14250         (gst_iir_equalizer_set_property), (gst_iir_equalizer_get_property),
14251         (gst_iir_equalizer_filter_inplace), (gst_iir_equalizer_setup),
14252         (plugin_init):
14253           add an equalizer
14254
14255 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14256
14257         Submitted by: Kjartan Maraas <kmaraas@broadpark.no>
14258
14259         * po/LINGUAS:
14260         * po/nb.po:
14261           Added Norwegian Bokmaal translation
14262
14263 2004-10-27  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14264
14265         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14266           Don't break on options (fixes #156488).
14267
14268 2004-10-27  Thomas Vander Stichele  <thomas at apestaart dot org>
14269
14270         * configure.ac:
14271         * ext/cdaudio/Makefile.am:
14272         * sys/Makefile.am:
14273           fix build on older automake
14274
14275 2004-10-26  Wim Taymans  <wim@fluendo.com>
14276
14277         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
14278         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
14279         Allow a little margin when negotiating the framerate.
14280
14281 2004-10-26  Stefan Kost  <ensonic@users.sf.net>
14282
14283         * gst/level/gstlevel.c:
14284           synchonised naming of pads and pad-templates
14285
14286 2004-10-26  Wim Taymans  <wim@fluendo.com>
14287
14288         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
14289         (gst_ogg_demux_handle_event), (_find_chain_get_unknown_part),
14290         (_find_streams_check), (gst_ogg_demux_push):
14291         Fix EOS again. Needs to be done in a better way. We should not
14292         remove the pad if there is no new chained stream.
14293
14294 2004-10-26 Iain <iaingnome@gmail.com>
14295
14296         * ext/ogg/gstoggdemux.c (gst_ogg_pad_new): Free the tag list.
14297         * gst/audioscale/gstaudioscale.c (gst_audioscale_link): Free the copy
14298         of the caps.
14299         * gst/interleave/interleave.c (interleave_class_init): Hook up release
14300         pad.
14301         (interleave_release_pad): Remove the pad.
14302         * gst/level/gstlevel.c: Allow the level to take 1 or 2 channels.
14303         * sys/sunaudio/gstsunaudio.c (gst_sunaudio_setparams): Pay attention to
14304         the set device.
14305         * sys/xvimage/xvimagesink.c (gst_xvimagesink_get_xv_support): Free the
14306         attrs
14307         (gst_xvimagesink_xcontext_clear): Free the xcontext.
14308         (gst_xvimagesink_finalize): Free the par.
14309
14310 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14311
14312         * gst/avi/gstavimux.c: (gst_avimux_audsinkconnect),
14313         (gst_avimux_stop_file):
14314           First calculate the rate, and only then use it. Hdr.rate is a
14315           multiple and not a derivative of hdr.scale. Scale is not the
14316           same as blockalign but is solely related to rate.
14317
14318 2004-10-26  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14319
14320         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_init),
14321         (gst_gnomevfssink_handle_event), (gst_gnomevfssink_chain):
14322           Implement seeking.
14323
14324 2004-10-25  James Henstridge  <james@jamesh.id.au>
14325
14326         Reviewed by:  David Schleef  <ds@schleef.org>
14327
14328         * examples/gstplay/player.c: (got_stream_length), (main):
14329         * examples/seeking/cdplayer.c: (update_scale):
14330         * examples/seeking/seek.c: (format_value), (update_scale):
14331         * examples/seeking/spider_seek.c: (format_value), (update_scale),
14332         (stop_seek):
14333         Build fixes on AMD64.
14334
14335 2004-10-25  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14336
14337         reviewed by: Ronald Bultje <rbultje at gnome dot org>
14338
14339         * sys/v4l/v4l_calls.c: (gst_v4l_get_chan_names):
14340         Fix for some v4l cards which hang in v4lsrc
14341
14342 2004-10-25  Wim Taymans  <wim@fluendo.com>
14343
14344         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_remove),
14345         (gst_ogg_demux_push), (gst_ogg_chains_clear):
14346         Make sure to remove the pad when a new chain is
14347         encountered. Set some vars to NULL so we don't try
14348         to reference freed memory.
14349
14350 2004-10-25  Wim Taymans  <wim@fluendo.com>
14351
14352         * examples/seeking/Makefile.am:
14353         * examples/seeking/cdplayer.c: (update_scale):
14354         * examples/seeking/chained.c: (unlinked), (new_pad), (main):
14355         * examples/seeking/playbin.c: (make_playerbin_pipeline),
14356         (format_value), (update_scale), (iterate), (start_seek),
14357         (stop_seek), (print_media_info), (play_cb), (pause_cb), (stop_cb),
14358         (print_usage), (main):
14359         Added some more examples, update others.
14360
14361 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14362
14363         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
14364         * ext/speex/gstspeexdec.c: (speex_dec_chain):
14365         * ext/theora/theoradec.c: (theora_dec_chain):
14366         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
14367           Add codec-name metadata.
14368
14369 2004-10-25  Takao Fujiwara  <Takao.Fujiwara@Sun.COM>
14370
14371         Reviewd by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14372
14373         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14374         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14375         * ext/alsa/gstalsamixertrack.h:
14376         * po/POTFILES.in:
14377           ALSA mixer track label internationalization (#154054).
14378
14379 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14380
14381         * ext/theora/theoradec.c: (theora_dec_chain):
14382           Export bitrate as metadata.
14383
14384 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14385
14386         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
14387         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
14388         * ext/alsa/gstalsamixertrack.h:
14389           Fix names, fix loop.
14390
14391 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14392
14393         * ext/speex/gstspeexdec.c: (gst_speex_dec_init),
14394         (speex_dec_convert):
14395           sinkconvert function so oggdemux can get the file length (totem).
14396
14397 2004-10-25  James Morrison  <ja2morri@csclub.uwaterloo.ca>
14398
14399         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14400
14401         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
14402           Don't push incomplete packets.
14403         * gst/typefind/gsttypefindfunctions.c: (m4a_type_find):
14404           Fix MPEG-4 audio typefinding.
14405
14406 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14407
14408         * sys/v4l/Makefile.am:
14409         * sys/v4l/gstv4l.c: (plugin_init):
14410         * sys/v4l/gstv4lelement.c: (gst_v4lelement_get_type),
14411         (gst_v4lelement_init), (gst_v4lelement_dispose),
14412         (gst_v4lelement_change_state):
14413         * sys/v4l/gstv4lelement.h:
14414         * sys/v4l/gstv4lxoverlay.c: (gst_v4l_xoverlay_open),
14415         (gst_v4l_xoverlay_close), (idle_refresh),
14416         (gst_v4l_xoverlay_set_xwindow_id):
14417         * sys/v4l/gstv4lxoverlay.h:
14418         * sys/v4l/v4l-overlay_calls.c:
14419         * sys/v4l/v4l_calls.h:
14420         * sys/v4l2/Makefile.am:
14421         * sys/v4l2/gstv4l2.c: (plugin_init):
14422         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_type),
14423         (gst_v4l2element_init), (gst_v4l2element_dispose),
14424         (gst_v4l2element_change_state):
14425         * sys/v4l2/gstv4l2element.h:
14426         * sys/v4l2/gstv4l2xoverlay.c: (gst_v4l2_xoverlay_open),
14427         (gst_v4l2_xoverlay_close), (idle_refresh),
14428         (gst_v4l2_xoverlay_set_xwindow_id):
14429         * sys/v4l2/gstv4l2xoverlay.h:
14430         * sys/v4l2/v4l2-overlay_calls.c:
14431         * sys/v4l2/v4l2_calls.h:
14432           Remove client-side overlay handling, use the X-server v4l plugin
14433           for that. Nicer overlay, less code. Also make the plugin
14434           compileable without X (but then without overlay, obviously).
14435           Makes xwindowlistener obsolete, should we remove that?
14436
14437 2004-10-25  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14438
14439         * sys/oss/gstosssrc.c: (gst_osssrc_get_time), (gst_osssrc_get),
14440         (gst_osssrc_src_query):
14441         * sys/oss/gstosssrc.h:
14442           OK, so people want offset in DEFAULT. This time, actually fix all
14443           cases.
14444         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
14445           Add FPS properly.
14446
14447 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14448
14449         * gst/asfdemux/gstasfmux.c:
14450         * gst/avi/gstavimux.c:
14451           Framerate.
14452
14453 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14454
14455         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_set_property):
14456           Fix properties (channel, norm, frequency).
14457
14458 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14459
14460         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_get_property):
14461           Flag typo.
14462         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults):
14463           No warnings.
14464
14465 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14466
14467         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_clear_format_list):
14468           Fix hang.
14469
14470 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14471
14472         * sys/v4l2/gstv4l2element.h:
14473           Yet Another Hack (tm) for kernel header borkedness.
14474         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
14475         (gst_v4l2src_v4l2fourcc_to_caps), (gst_v4l2_fourcc_from_structure),
14476         (gst_v4l2src_link), (gst_v4l2src_getcaps),
14477         (gst_v4l2src_change_state):
14478         * sys/v4l2/gstv4l2src.h:
14479         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_capture_init),
14480         (gst_v4l2src_capture_start), (gst_v4l2src_capture_stop):
14481           Fix caps, keep track of state, work.
14482
14483 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14484
14485         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_getcaps):
14486           Quiet.
14487
14488 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14489
14490         * sys/oss/gstosssrc.c: (gst_osssrc_get):
14491           Don't mix bytes and samples.
14492
14493 2004-10-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14494
14495         * ext/ogg/gstoggmux.c:
14496           Basic pad template which accepts OGM tracks, speex, flac, vorbis
14497           and theora. Any is incorrect.
14498         * gst/asfdemux/gstasfmux.c: (gst_asfmux_vidsink_link):
14499           Fix caps.
14500         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_base_init):
14501         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_base_init),
14502         (gst_v4lmjpegsrc_init), (gst_v4lmjpegsrc_srcconnect),
14503         (gst_v4lmjpegsrc_getcaps), (gst_v4lmjpegsrc_change_state):
14504         * sys/v4l/gstv4lmjpegsrc.h:
14505         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
14506         (gst_v4lsrc_change_state):
14507         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_start),
14508         (gst_v4lmjpegsrc_capture_stop):
14509           Fix caps. Keep track of internal state. Work.
14510
14511 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14512
14513         * ext/Makefile.am:
14514           Fix the build fixes.
14515
14516 2004-10-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14517
14518         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14519         (gst_ogg_demux_src_event), (_find_chain_seek),
14520         (gst_ogg_pad_push):
14521           Check for pad availability before using it.
14522         * ext/ogg/gstoggdemux.c: (_find_chain_process):
14523           Fix parsing of chained ogg. Needs more work on the decoder side.
14524
14525 2004-10-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
14526
14527         * gst/spectrum/Makefile.am:
14528         * gst/spectrum/demo-osssrc.c: (spectrum_chain), (main),
14529         (idle_func):
14530           Fix demo and reenable it. Yes, I'm currently playing with audio
14531           analysis tools
14532
14533 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14534
14535         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
14536           We love it if files that start at zero work too...
14537
14538 2004-10-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14539
14540         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
14541           Handle files with missing EOS headers.
14542
14543 2004-10-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14544
14545         * gst/tcp/gsttcpserversink.c:
14546         (gst_tcpserversink_handle_server_read),
14547         (gst_tcpserversink_init_send):
14548         Zero some variables first (need for accept not to return EINVAL)
14549
14550 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14551
14552         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14553         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
14554         * ext/theora/theoradec.c: (theora_dec_sink_convert),
14555         (theora_dec_chain):
14556         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
14557         (gst_vorbis_dec_init), (vorbis_dec_convert), (vorbis_dec_chain):
14558           Seeking and querying finetune.
14559
14560 2004-10-20  Thomas Vander Stichele  <thomas at apestaart dot org>
14561
14562         * configure.ac:
14563         * ext/Makefile.am:
14564         * ext/raw1394/Makefile.am:
14565           fix the build
14566
14567 2004-10-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14568
14569         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
14570           Wrong return.
14571         * gst/playback/Makefile.am:
14572         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init):
14573         * gst/playback/gstplay-marshal.list:
14574         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init):
14575           Fix marshallers.
14576
14577 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14578
14579         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event):
14580           Silence.
14581
14582 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14583
14584         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14585         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
14586         (gst_ogg_pad_push):
14587           Yay for non-lineair granulepos in theora.
14588
14589 2004-10-18  Wim Taymans  <wim@fluendo.com>
14590
14591         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
14592         (gst_dvdec_video_link), (gst_dvdec_push), (gst_dvdec_loop):
14593         * ext/dv/gstdvdec.h:
14594         Make sure we renegotiate aspect ratio when the camera switches.
14595
14596 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14597
14598         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14599         (gst_ogg_demux_src_event), (gst_ogg_pad_push):
14600           Start at zero.
14601         * ext/theora/theoradec.c: (theora_dec_chain):
14602           Skip headers. Bad idea for chained ogg, but fixes seeking.
14603
14604 2004-10-18  Wim Taymans  <wim@fluendo.com>
14605
14606         * configure.ac:
14607         I swear, this is the last time I touch this.
14608
14609 2004-10-18  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14610
14611         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
14612         (gst_ogg_demux_src_event), (gst_ogg_pad_populate),
14613         (_read_bos_process), (gst_ogg_demux_iterate), (gst_ogg_pad_new):
14614           Faster seeking.
14615         * ext/theora/theoradec.c: (theora_dec_sink_convert):
14616           Time-to-default conversion.
14617         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
14618           Don't error on unknown packets, just skip. We should probably
14619           read them if we want to support chained ogg.
14620
14621 2004-10-18  Wim Taymans  <wim@fluendo.com>
14622
14623         * configure.ac:
14624         Added cdaudio to wrong list.
14625
14626 2004-10-18  Wim Taymans  <wim@fluendo.com>
14627
14628         * configure.ac:
14629         Revive cdaudio.
14630
14631 2004-10-18  Wim Taymans  <wim@fluendo.com>
14632
14633         * ext/dv/gstdvdec.c: (gst_dvdec_video_getcaps),
14634         (gst_dvdec_video_link), (gst_dvdec_push):
14635         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
14636         (gst_smokeenc_resync), (gst_smokeenc_chain):
14637         Fix mimetype on smoke encoder.
14638         Add aspect ratio to dvdec. Not sure if these
14639         values are correct though....
14640
14641 2004-10-18  Wim Taymans  <wim@fluendo.com>
14642
14643         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init):
14644         Fix vorbis property descriptions and ranges.
14645
14646 2004-10-18  Wim Taymans  <wim@fluendo.com>
14647
14648         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate):
14649         Really do nothing when no data is available.
14650         Go to the playing state when the stream is not seekable
14651         instead of failing.
14652
14653 2004-10-18  Wim Taymans  <wim@fluendo.com>
14654
14655         * ext/cdaudio/gstcdaudio.c: (_do_init), (gst_cdaudio_base_init),
14656         (gst_cdaudio_get_event_masks), (gst_cdaudio_send_event),
14657         (gst_cdaudio_query), (plugin_init), (cdaudio_uri_get_type),
14658         (cdaudio_uri_get_protocols), (cdaudio_uri_get_uri),
14659         (cdaudio_uri_set_uri), (cdaudio_uri_handler_init):
14660         Added uri handler for cd://
14661         Port to new API.
14662
14663 2004-10-18  Wim Taymans  <wim@fluendo.com>
14664
14665         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14666         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
14667         (try_to_link_1), (no_more_pads), (close_link), (type_found):
14668         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
14669         (remove_prerolls), (unknown_type), (add_element_stream),
14670         (new_decoded_pad), (setup_source), (gst_play_base_bin_add_element),
14671         (gst_play_base_bin_remove_element),
14672         (gst_play_base_bin_link_stream):
14673         * gst/playback/gstplaybin.c: (gen_video_element),
14674         (gen_vis_element), (remove_sinks), (setup_sinks):
14675         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
14676         (gst_stream_info_get_type), (gst_stream_info_class_init),
14677         (gst_stream_info_init), (gst_stream_info_new),
14678         (gst_stream_info_dispose), (stream_info_mute_pad),
14679         (gst_stream_info_set_property), (gst_stream_info_get_property):
14680         * gst/playback/gststreaminfo.h:
14681         Add sink padtemplate to decodebin.
14682         Added some more comments.
14683         Make queue size configurable in playbasebin.
14684         Added possibility to use elements as sinks (ex cdaudio).
14685
14686 2004-10-15  Wim Taymans  <wim@fluendo.com>
14687
14688         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init),
14689         (gst_speexenc_chain):
14690         Fix speex timestamps so that it gets muxed properly.
14691
14692 2004-10-15  Wim Taymans  <wim@fluendo.com>
14693
14694         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_get_type),
14695         (gst_dv1394src_base_init), (gst_dv1394src_class_init),
14696         (gst_dv1394src_init), (gst_dv1394src_dispose),
14697         (gst_dv1394src_iso_receive), (gst_dv1394src_discover_avc_node),
14698         (gst_dv1394src_change_state), (gst_dv1394src_get_event_mask),
14699         (gst_dv1394src_event), (gst_dv1394src_get_formats),
14700         (gst_dv1394src_convert), (gst_dv1394src_get_query_types),
14701         (gst_dv1394src_query), (gst_dv1394src_uri_get_type),
14702         (gst_dv1394src_uri_get_protocols), (gst_dv1394src_uri_get_uri),
14703         (gst_dv1394src_uri_set_uri), (gst_dv1394src_uri_handler_init):
14704         * ext/raw1394/gstdv1394src.h:
14705         Added conversion/query functions.
14706         Update buffer timestamps,
14707         Added signals.
14708         Added uri dv:// so it might play from the firewire in playbin.
14709         Fix a possible leak.
14710         Added debugging.
14711
14712 2004-10-15  Wim Taymans  <wim@fluendo.com>
14713
14714         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_class_init),
14715         (gst_dv1394src_init), (gst_dv1394src_set_property),
14716         (gst_dv1394src_get_property), (gst_dv1394src_iso_receive),
14717         (gst_dv1394src_discover_avc_node), (gst_dv1394src_change_state):
14718         * ext/raw1394/gstdv1394src.h:
14719         Added AV/C VTR control support needed for some cameras.
14720         Added automatic port detection.
14721         Added properties for selecting the channel.
14722         The configure.ac script is not yet updated to reflect the
14723         new libavc1394 and librom1394 dependencies.
14724
14725 2004-10-15  Wim Taymans  <wim@fluendo.com>
14726
14727         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
14728         (qtdemux_parse), (gst_qtdemux_handle_esds):
14729         An esds box is not a container.
14730         Fix parsing of mp4v boxes.
14731         Do not try to renegotiate fps for each frame. Need to
14732         find a better method. This should fix mp4 playback.
14733
14734 2004-10-14  David Schleef  <ds@schleef.org>
14735
14736         * configure.ac: update for swfdec-0.3 and liboil-0.2
14737         * ext/swfdec/gstswfdec.c: update for swfdec-0.3
14738         * ext/swfdec/gstswfdec.h: same
14739         * gst/videofilter/gstvideobalance.c: update for liboil-0.2
14740         * gst/videotestsrc/videotestsrc.c: same
14741
14742 2004-10-14  Wim Taymans  <wim@fluendo.com>
14743
14744         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
14745         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
14746         (is_sync_frame), (gst_multifdsink_new_client),
14747         (gst_multifdsink_handle_client_write),
14748         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
14749         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
14750         Turn warnings into info.
14751         Don't allow a state change in the streaming thread.
14752
14753 2004-10-14  Thomas Vander Stichele  <thomas at apestaart dot org>
14754
14755         * ext/vorbis/oggvorbisenc.c:
14756         * ext/vorbis/vorbisdec.c:
14757           fix template sample rate
14758
14759 2004-10-13  Wim Taymans  <wim@fluendo.com>
14760
14761         * ext/mad/gstmad.c: (gst_mad_check_caps_reset), (gst_mad_chain):
14762         Decoding the header first fixes some problems in resyncing
14763         in more mp3s.
14764
14765 2004-10-12  Wim Taymans  <wim@fluendo.com>
14766
14767         * gst/playback/gstplaybin.c: (gen_video_element),
14768         (gen_vis_element), (remove_sinks), (setup_sinks):
14769         Added vis plugin support, need to configure the vis
14770         element to activate it.
14771
14772 2004-10-12  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14773
14774         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get),
14775         (gst_gnomevfssrc_srcpad_query), (gst_gnomevfssrc_srcpad_event):
14776           Some debug.
14777         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
14778         (gst_avi_demux_handle_src_event), (gst_avi_demux_read_superindex),
14779         (gst_avi_demux_read_subindexes), (gst_avi_demux_add_stream),
14780         (gst_avi_demux_stream_index), (gst_avi_demux_skip),
14781         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
14782         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header):
14783         * gst/avi/gstavidemux.h:
14784           Support for openDML-2.0 indx/ix## chunks. Support for broken index
14785           recovery (where, if part of the index is broken, we will still read
14786           the rest of the index and recover the broken part by stream
14787           scanning). More broken media support. EOS workarounds. General AVI
14788           braindamage headache recovery. Aspirin included.
14789
14790 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14791
14792         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_open),
14793         (cdparanoia_event), (cdparanoia_query):
14794           Get rid of hideous lead-in.
14795
14796 2004-10-11  Wim Taymans  <wim@fluendo.com>
14797
14798         * gst/playback/gstplaybasebin.c: (setup_source):
14799         Wrong var used to get g_list_next.
14800
14801 2004-10-11  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14802
14803         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init),
14804         (cdparanoia_get), (cdparanoia_open):
14805           Report discid as metadata, add duration.
14806
14807 2004-10-11  Wim Taymans  <wim@fluendo.com>
14808
14809         * gst/playback/gstplaybasebin.c: (setup_source):
14810         Cleanup the previous pipeline a little earlier for the
14811         case that a source element provides raw data.
14812
14813 2004-10-11  Benjamin Otte  <otte@gnome.org>
14814
14815         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
14816           reset v1 tag offset when there is no v1 tag. Fixes id3demux always
14817           consuming the last 128 bytes, even though it was valid mp3 data.
14818
14819 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14820
14821         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
14822         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
14823         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
14824         Change g_warnings to GST_WARNING_OBJECT and fix colourspace issue
14825
14826 2004-10-10  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
14827
14828         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps):
14829         Fix for webcams that support only specific width or height
14830
14831 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
14832
14833         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14834
14835         * gst/wavenc/gstwavenc.c: (gst_wavenc_stop_file):
14836           Fix wrong discont event setup (fixes #154967).
14837
14838 2004-10-09  Sebastien Cote  <sc5@hermes.usherb.ca>
14839
14840         Reviewed by:  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14841
14842         * gst/auparse/gstauparse.c: (gst_auparse_chain):
14843           Error out on invalid data (fixes #154807).
14844
14845 2004-10-09  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
14846
14847         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14848
14849         * ext/dvdread/dvdreadsrc.c: (_read):
14850           Make titles > 0 work again (fixes #154834).
14851
14852 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14853
14854         * gst-libs/gst/riff/riff-media.c:
14855         (gst_riff_create_video_template_caps):
14856           WMV3 missing in template caps.
14857
14858 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14859
14860         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
14861           OK, so the original code was too strict. It makes random AVI files
14862           hang for seconds upon opening, which is unacceptable and is far
14863           beyond the original goal of getting multiple chunks for one-chunk
14864           sounc stream files. So now do just that.
14865
14866 2004-10-09  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14867
14868         * gst/playback/gstplaybasebin.c: (setup_source),
14869         (gst_play_base_bin_change_state):
14870           Actually clean up streaminfo if output fails. This would trigger
14871           if, for example, there was no CD in the drive. No preroll, so
14872           a streaminfo structure is created, but the subsequent state change
14873           of the thread fails.
14874         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
14875           Don't change state if parent failed.
14876
14877 2004-10-08  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14878
14879         * gst/playback/gstplaybin.c: (gst_play_bin_class_init),
14880         (gst_play_bin_init), (gst_play_bin_get_property), (handoff),
14881         (gen_video_element), (remove_sinks):
14882           Add small bits of code for screenshot handling.
14883
14884 2004-10-08  Wim Taymans  <wim@fluendo.com>
14885
14886         * gst/playback/gstplaybin.c: (gst_play_bin_set_property),
14887         (gen_video_element), (gen_audio_element), (setup_sinks):
14888         Don't assume the user provided sinks are named "sink"...
14889
14890 2004-10-08  Wim Taymans  <wim@fluendo.com>
14891
14892         * gst/playback/gstplaybasebin.c: (gen_preroll_element),
14893         (unknown_type), (setup_source), (gst_play_base_bin_remove_element),
14894         (gst_play_base_bin_link_stream):
14895         Do not try to autoplug sources that generate raw streams like
14896         cdparanoia.
14897         disconnect the preroll overrun signal when we don't need it anymore.
14898
14899 2004-10-08  Milosz Derezynski  <internalerror.rez@fhtw-berlin.de>
14900
14901         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
14902         Added reworked patch from #154903 from milosz derezynski (deadchip).
14903
14904 2004-10-08  Wim Taymans  <wim@fluendo.com>
14905
14906         * ext/cdparanoia/gstcdparanoia.c: (_do_init),
14907         (cdparanoia_base_init), (cdparanoia_class_init), (cdparanoia_init),
14908         (cdparanoia_dispose), (cdparanoia_get), (cdparanoia_change_state),
14909         (cdparanoia_convert), (cdparanoia_uri_get_type),
14910         (cdparanoia_uri_get_protocols), (cdparanoia_uri_get_uri),
14911         (cdparanoia_uri_set_uri), (cdparanoia_uri_handler_init):
14912         * ext/cdparanoia/gstcdparanoia.h:
14913         This adds the cdda://<tracknum> uri.
14914
14915 2004-10-08  Wim Taymans  <wim@fluendo.com>
14916
14917         * gst/playback/gstdecodebin.c: (gst_decode_bin_class_init),
14918         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
14919         (try_to_link_1), (no_more_pads), (close_link), (type_found):
14920         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_class_init),
14921         (unknown_type), (gst_play_base_bin_remove_element),
14922         (gst_play_base_bin_link_stream):
14923         * gst/playback/gstplaybasebin.h:
14924         * gst/playback/gstplaybin.c: (gst_play_bin_init),
14925         (gst_play_bin_set_property), (gen_video_element),
14926         (gen_audio_element), (setup_sinks):
14927         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
14928         (gst_stream_info_get_type), (gst_stream_info_class_init),
14929         (gst_stream_info_init), (gst_stream_info_new),
14930         (gst_stream_info_dispose), (stream_info_mute_pad),
14931         (gst_stream_info_set_property), (gst_stream_info_get_property):
14932         * gst/playback/gststreaminfo.h:
14933         Reuse the audio and video bins.
14934         Some internal cleanups in the stream selection code.
14935
14936 2004-10-08  Julien MOUTTE  <julien@moutte.net>
14937
14938         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
14939         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
14940         * sys/ximage/ximagesink.h:
14941         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
14942         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
14943         * sys/xvimage/xvimagesink.h: Reverting Ronald's changes as the issue is
14944         not coming from those elements. Moreover these elements should not keep
14945         the xid they have been given when in NULL state.
14946
14947 2004-10-07  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
14948
14949         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
14950         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init):
14951         * sys/ximage/ximagesink.h:
14952         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
14953         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init):
14954         * sys/xvimage/xvimagesink.h:
14955           Actually only create a new toplevel window if we're not gonna
14956           embed it right after.
14957
14958 2004-10-07  Wim Taymans  <wim@fluendo.com>
14959
14960         * gst/playback/gstplaybasebin.c: (play_base_bin_mute_pad),
14961         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream):
14962         * gst/playback/gstplaybin.c: (setup_sinks):
14963         Implement muting/unmuting of streams, mute streams that are not
14964         used.
14965
14966 2004-10-07  Wim Taymans  <wim@fluendo.com>
14967
14968         * gst/typefind/gsttypefindfunctions.c: (ac3_type_find),
14969         (plugin_init):
14970         Added lame audio/x-ac3 typefind function.
14971
14972 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14973
14974         * configure.ac:
14975           bump nano to cvs
14976
14977 === release 0.8.5 ===
14978
14979 2004-10-06  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
14980
14981         * NEWS:
14982         * RELEASE:
14983         * configure.ac:
14984           releasing 0.8.5, "Take You On"
14985
14986 2004-10-06  Wim Taymans  <wim@fluendo.com>
14987
14988         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
14989         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
14990         (no_more_pads), (close_link), (type_found):
14991         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
14992         * gst/playback/gstplaybin.c: (gen_video_element):
14993         Do not signal the no_more_pads after the first pad when
14994         we are plugging a non dynamic element with multiple
14995         output pads (like swfdec, dvdec, ...).
14996
14997 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
14998
14999         * configure.ac:
15000           bump for prerelease
15001
15002 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15003
15004         * gst/wavparse/gstwavparse.c:
15005           add ATRAC3 to STATIC CAPS to fix a warning
15006
15007         * gst/matroska/ebml-read.c:
15008         * gst-libs/gst/riff/riff-read.c:
15009           fix typos
15010
15011 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15012
15013         * gst-libs/gst/riff/riff-media.c:
15014           generate caps for ATRAC3 audio streams
15015
15016         * gst/realmedia/rmdemux.c:
15017           generate caps for ATRAC3 audio streams
15018
15019 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15020
15021         * gst/wavparse/Makefile.am
15022         * gst/wavparse/riff.h
15023         * gst/wavparse/wavparse.vcproj
15024           riff.h removal (unused and duplication with riff-ids.h)
15025
15026 2004-10-06  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15027
15028         * gst/wavparse/gstwavparse.h
15029           remove duplicated defines for audio codec codes
15030
15031         * gst-libs/gst/riff/riff-ids.h
15032         * gst/wavenc/riff.h:
15033           add "4CC" code for ATRAC3 audio streams
15034           add "4CC" code for ITU_G721_ADPCM (unused for now)
15035
15036 2004-10-06  Wim Taymans  <wim@fluendo.com>
15037
15038         * gst/flx/gstflxdec.c: (gst_flxdec_init), (gst_flxdec_loop):
15039         Actually _do_ negotiation. Pass gdouble as arg instead
15040         of guint64 for the framerate.
15041
15042 2004-10-06  Wim Taymans  <wim@fluendo.com>
15043
15044         * gst/playback/gstdecodebin.c: (gst_decode_bin_init),
15045         (find_compatibles), (close_pad_link), (try_to_link_1),
15046         (no_more_pads), (close_link), (type_found):
15047         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
15048         * gst/playback/gstplaybin.c: (gen_video_element),
15049         (gen_audio_element):
15050         Set state on newly added element to READY so that negotiation
15051         can happen ASAP.
15052         Addes some more debug info.
15053         Do not try to plug pads with multiple caps structures or ANY
15054         because it is too dangerous since we do not do dynamic
15055         replugging.
15056
15057 2004-10-06  Thomas Vander Stichele  <thomas at apestaart dot org>
15058
15059         written by: Gora Mohanty <gora_mohanty@yahoo.co.in>
15060
15061         * po/LINGUAS:
15062         * po/or.po:
15063           add Oriya translation
15064
15065 2004-10-05  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15066
15067         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
15068           Prevent overwrite of size member. Makes audio sound crappy.
15069
15070 2004-10-05  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15071
15072         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
15073         Add rmvb to the list of known RealMedia extensions
15074
15075 2004-10-05  Wim Taymans  <wim@fluendo.com>
15076
15077         * ext/libmng/gstmngdec.c: (gst_mngdec_loop), (mngdec_error),
15078         (mngdec_openstream), (mngdec_closestream),
15079         (mngdec_handle_sink_event), (mngdec_readdata),
15080         (mngdec_gettickcount), (mngdec_settimer), (mngdec_processheader),
15081         (mngdec_getcanvasline), (mngdec_refresh),
15082         (gst_mngdec_change_state):
15083         Set the framerate correctly.
15084
15085 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15086
15087         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
15088           There was something wrong with the index massaging.
15089
15090 2004-10-04  Wim Taymans  <wim@fluendo.com>
15091
15092         * ext/jpeg/gstjpeg.c: (smoke_type_find), (plugin_init):
15093         * ext/jpeg/gstsmokedec.c: (gst_smokedec_init),
15094         (gst_smokedec_chain):
15095         * ext/jpeg/gstsmokedec.h:
15096         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_class_init),
15097         (gst_smokeenc_init), (gst_smokeenc_resync), (gst_smokeenc_chain):
15098         * ext/jpeg/gstsmokeenc.h:
15099         * ext/jpeg/smokecodec.c: (smokecodec_encode_new),
15100         (smokecodec_decode_new), (smokecodec_info_free),
15101         (smokecodec_set_quality), (smokecodec_get_quality),
15102         (smokecodec_set_threshold), (smokecodec_get_threshold),
15103         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
15104         (find_best_size), (abs_diff), (put), (smokecodec_encode_id),
15105         (smokecodec_encode), (smokecodec_parse_id),
15106         (smokecodec_parse_header), (smokecodec_decode):
15107         * ext/jpeg/smokecodec.h:
15108         * ext/jpeg/smokeformat.h:
15109         Updated smoke, new bitstream, allows embedding in ogg.
15110
15111 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15112
15113         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_event):
15114           Fix seeking in some files. All this code is no longer needed (and
15115           actually breaks stuff) because we now synchronize the full index
15116           right when reading the header.
15117
15118 2004-10-04  Wim Taymans  <wim@fluendo.com>
15119
15120         * configure.ac:
15121         configure update for libmng.
15122
15123 2004-10-04  Wim Taymans  <wim@fluendo.com>
15124
15125         * ext/libmng/Makefile.am:
15126         * ext/libmng/gstmng.c: (plugin_init):
15127         * ext/libmng/gstmng.h:
15128         * ext/libmng/gstmngdec.c: (gst_mngdec_get_type),
15129         (gst_mngdec_base_init), (gst_mngdec_class_init),
15130         (gst_mngdec_sinklink), (gst_mngdec_init), (gst_mngdec_src_getcaps),
15131         (gst_mngdec_loop), (gst_mngdec_get_property),
15132         (gst_mngdec_set_property), (mngdec_error), (mngdec_openstream),
15133         (mngdec_closestream), (mngdec_handle_sink_event),
15134         (mngdec_readdata), (mngdec_gettickcount), (mngdec_settimer),
15135         (mngdec_processheader), (mngdec_getcanvasline), (mngdec_refresh),
15136         (gst_mngdec_change_state):
15137         * ext/libmng/gstmngdec.h:
15138         * ext/libmng/gstmngenc.c: (gst_mngenc_get_type),
15139         (mng_caps_factory), (raw_caps_factory), (gst_mngenc_base_init),
15140         (gst_mngenc_class_init), (gst_mngenc_sinklink), (gst_mngenc_init),
15141         (gst_mngenc_chain), (gst_mngenc_get_property),
15142         (gst_mngenc_set_property):
15143         * ext/libmng/gstmngenc.h:
15144         Added basic MNG decoder. Needs more work. The encoder does
15145         not work yet.
15146
15147 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15148
15149         * gst/realmedia/rmdemux.c: (gst_rmdemux_handle_sink_event),
15150         (gst_rmdemux_loop), (gst_rmdemux_add_stream),
15151         (gst_rmdemux_parse_mdpr), (gst_rmdemux_dump_mdpr):
15152           Don't hang on length=0 chunks. Some negotiation fixes. Signal
15153           no-more-pads.
15154
15155 2004-10-04  Thomas Vander Stichele  <thomas at apestaart dot org>
15156
15157         * configure.ac:
15158           you need at least 1.0.4 of speex
15159
15160 2004-10-04 Iain <iaingnome@gmail.com>
15161
15162         * ext/speex/gstspeexdec.h: Revert the includes changes.
15163
15164         * ext/speex/gstspeexenc.[ch]: Revert the includes changes.
15165
15166 2004-09-30 Iain <iaingnome@gmail.com>
15167
15168         * sys/sunaudio/gstsunaudio.c (gst_sunaudiosink_open): Use the device
15169         found during init or set as a property instead of hardcoding /dev/audio
15170
15171 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15172
15173         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
15174         (gst_rmdemux_init), (gst_rmdemux_handle_sink_event),
15175         (gst_rmdemux_loop), (gst_rmdemux_add_stream), (re_hexdump_bytes),
15176         (re_dump_pascal_string), (gst_rmdemux_dump__rmf),
15177         (gst_rmdemux_dump_prop), (gst_rmdemux_parse_mdpr),
15178         (gst_rmdemux_dump_mdpr), (gst_rmdemux_dump_indx),
15179         (gst_rmdemux_dump_data):
15180           Use debug category, fix EOS handling. filesrc ! rmdemux now
15181           works.
15182
15183 2004-10-04  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15184
15185         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
15186         (gst_avi_demux_stream_scan), (sort), (gst_avi_demux_massage_index),
15187         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data):
15188           Improve allocation, cutting and sorting of the index. How takes a
15189           few seconds instead of minutes.
15190
15191 2004-10-03  Christophe Fergeau  <teuf@gnome.org>
15192
15193         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
15194           fixed compilation
15195
15196 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15197
15198         * gst-libs/gst/riff/riff-media.c:
15199         (gst_riff_create_video_caps_with_data),
15200         (gst_riff_create_video_template_caps):
15201           Add wing commander format mimetype/fourccs.
15202         * gst/avi/gstavidemux.c: (gst_avi_demux_massage_index):
15203           Don't crash if some value is 0.
15204
15205 2004-10-02  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15206
15207         * gst-libs/gst/riff/riff-media.c:
15208         (gst_riff_create_video_caps_with_data),
15209         (gst_riff_create_video_template_caps):
15210           Add DIB fourcc (raw, palettized 8-bit RGB).
15211         * gst-libs/gst/riff/riff-read.c:
15212         (gst_riff_read_strf_vids_with_data):
15213           Oops, fix strf_data reading bug.
15214         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
15215           Use a non-NULL tag.
15216         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
15217           Time for hacks. Sorry Dave. At least one quicktime movie (a
15218           trailer) that I've encountered contains multiple video tracks.
15219           One of those is the actual video track, the other are one-frame
15220           tracks (images). Unfortunately, the number of frames according
15221           to the trak header is 1 for each, so that doesn't help. So
15222           instead, I look at the duration and discard tracks with a
15223           duration shorter than 20% of the length of the stream. Better
15224           than nothing.
15225
15226 2004-10-01  Christian Schaller <christian@fluendo.com>
15227
15228         * ext/ivorbis/vorbis.c:
15229           Patch from Phil Blundell (Bug 152341)
15230
15231 2004-10-01  Wim Taymans  <wim@fluendo.com>
15232
15233         * ext/speex/gstspeexdec.c: (gst_speex_dec_class_init),
15234         (speex_dec_get_formats), (speex_dec_convert),
15235         (speex_dec_src_query), (speex_dec_src_event), (speex_dec_event),
15236         (speex_dec_chain), (gst_speexdec_get_property),
15237         (gst_speexdec_set_property):
15238         Small cleanups.
15239
15240 2004-10-01  Wim Taymans  <wim@fluendo.com>
15241
15242         * gst/wavparse/gstwavparse.c: (gst_wavparse_class_init),
15243         (gst_wavparse_stream_init), (gst_wavparse_fmt),
15244         (gst_wavparse_other), (gst_wavparse_loop),
15245         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
15246         (gst_wavparse_srcpad_event):
15247         * gst/wavparse/gstwavparse.h:
15248         Added some more debugging info.
15249         Fix the case where the length of the file is 0.
15250         Make sure we seek to sample borders.
15251
15252 2004-10-01  Wim Taymans  <wim@fluendo.com>
15253
15254         * gst/playback/README:
15255         * gst/playback/gstdecodebin.c: (gst_decode_bin_factory_filter),
15256         (gst_decode_bin_init), (find_compatibles), (close_pad_link),
15257         (try_to_link_1), (no_more_pads), (close_link), (type_found):
15258         Add some debug info to decodebin, update README
15259
15260 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15261
15262         * ext/dvdnav/dvdnavsrc.c: (dvdnav_handle_navigation_event):
15263           Don't use g_print(); use GST_DEBUG().
15264
15265 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15266
15267         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
15268         (gst_ogg_mux_queue_pads):
15269           Handle EOS properly.
15270
15271 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
15272
15273         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15274
15275         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_sinkconnect),
15276         (gst_faad_chain), (gst_faad_change_state):
15277         * ext/faad/gstfaad.h:
15278           Allow playback of raw (unframed) MPEG AAC files (#148993).
15279
15280 2004-10-01  Sebastien Cote  <sc5@hermes.usherb.ca>
15281
15282         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15283
15284         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
15285           Throw error if we didn't recognize the stream. Fixes #152289.
15286
15287 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15288
15289         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link):
15290           Fix negotiation.
15291
15292 2004-10-01  Francis Labonte  <francis_labonte@hotmail.com>
15293
15294         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15295
15296         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt):
15297           Fix memleak.
15298
15299 2004-10-01  Balamurali Viswanathan  <balamurali.viswanathan@wipro.com>
15300
15301         Reviewed by: Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15302
15303         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_setparams):
15304           Solve #152805.
15305         * sys/sunaudio/gstsunmixer.c: (gst_sunaudiomixer_set_mute):
15306           Solve 152806.
15307
15308 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15309
15310         * gst-libs/gst/riff/riff-media.c:
15311         (gst_riff_create_video_caps_with_data),
15312         (gst_riff_create_audio_caps_with_data):
15313           Add codec_data handling (like asfdemux used to do).
15314         * gst/asfdemux/gstasf.c: (plugin_init):
15315         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
15316         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
15317           Use riff-media for caps creation instead of our own (mostly
15318           broken) copy of its functions.
15319
15320 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15321
15322         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_capture):
15323           Don't actually error out if we get another return value than
15324           -EINVAL. Opposite to what I first thought, drivers have random
15325           return values for this, although -EINVAL is the expected return
15326           value. Since this is not fatal, we shouldn't use
15327           GST_ELEMENT_ERROR() but just GST_ERROR_OBJECT().
15328
15329 2004-10-01  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15330
15331         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_class_init),
15332         (dvdreadsrc_init), (dvdreadsrc_dispose), (dvdreadsrc_set_property),
15333         (dvdreadsrc_get_property), (_open), (_seek), (_read),
15334         (dvdreadsrc_get), (dvdreadsrc_open_file),
15335         (dvdreadsrc_change_state):
15336           Fix. Don't do one big huge loop around the whole DVD, that will
15337           cache all data and thus eat sizeof(dvd) (several GB) before we
15338           see something.
15339         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
15340           Actually NULL'ify event after using it.
15341         * gst/matroska/ebml-read.c: (gst_ebml_read_use_event),
15342         (gst_ebml_read_handle_event), (gst_ebml_read_element_id),
15343         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
15344         (gst_ebml_read_seek), (gst_ebml_read_skip):
15345           Handle events.
15346         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
15347         (gst_dvd_demux_init), (gst_dvd_demux_get_audio_stream),
15348         (gst_dvd_demux_get_subpicture_stream), (gst_dvd_demux_plugin_init):
15349           Fix timing (this will probably break if I seek using menus, but
15350           I didn't get there yet). VOBs and normal DVDs should now work.
15351           Add a mpeg2-only pad with high rank so this get autoplugged for
15352           MPEG-2 movies.
15353         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_base_init),
15354         (gst_mpeg_demux_class_init), (gst_mpeg_demux_init),
15355         (gst_mpeg_demux_new_output_pad), (gst_mpeg_demux_get_video_stream),
15356         (gst_mpeg_demux_get_audio_stream),
15357         (gst_mpeg_demux_get_private_stream), (gst_mpeg_demux_parse_packet),
15358         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_plugin_init):
15359           Use this as second rank for MPEG-1 and MPEG-2. Still use this for
15360           MPEG-1 but use dvddemux for MPEG-2.
15361         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
15362         (gst_mpeg_parse_init), (gst_mpeg_parse_new_pad),
15363         (gst_mpeg_parse_parse_packhead):
15364           Timing. Only add pad template if it exists. Add sink template from
15365           class and not from ourselves. This means we will always use the
15366           correct sink template even if it is not the one defined in this
15367           file.
15368
15369 2004-09-29  Wim Taymans  <wim@fluendo.com>
15370
15371         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_packet),
15372         (gst_mpeg_demux_parse_pes):
15373         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
15374         Fix playback of mpeg again, timestamps where screwed up by
15375         patch 1.61.
15376
15377 2004-09-29  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15378
15379         * ext/flac/gstflacdec.c: (gst_flacdec_src_query):
15380           Only return true if we actually filled something in. Prevents
15381           player applications from showing a random length for flac files.
15382         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
15383         (gst_riff_read_use_event), (gst_riff_read_handle_event),
15384         (gst_riff_read_seek), (gst_riff_read_skip), (gst_riff_read_strh),
15385         (gst_riff_read_strf_vids_with_data),
15386         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_iavs):
15387           OK, ok, so I implemented event handling. Apparently it's normal
15388           that we receive random events at random points without asking
15389           for it.
15390         * gst/avi/gstavidemux.c: (gst_avi_demux_reset),
15391         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
15392         (gst_avi_demux_handle_src_event), (gst_avi_demux_stream_index),
15393         (gst_avi_demux_sync), (gst_avi_demux_stream_scan),
15394         (gst_avi_demux_massage_index), (gst_avi_demux_stream_header),
15395         (gst_avi_demux_handle_seek), (gst_avi_demux_process_next_entry),
15396         (gst_avi_demux_stream_data), (gst_avi_demux_loop):
15397         * gst/avi/gstavidemux.h:
15398           Implement non-lineair chunk handling and subchunk processing.
15399           The first solves playback of AVI files where the audio and video
15400           data of individual buffers that we read are not synchronized.
15401           This should not happen according to the wonderful AVI specs, but
15402           of course it does happen in reality. It is also a prerequisite for
15403           the second. Subchunk processing allows us to cut chunks in small
15404           pieces and process each of these pieces separately. This is
15405           required because I've seen several AVI files with incredibly large
15406           audio chunks, even some files with only one audio chunk for the
15407           whole file. This allows for proper playback including seeking.
15408           This patch is supposed to fix all AVI A/V sync issues.
15409         * gst/flx/gstflxdec.c: (gst_flxdec_class_init),
15410         (flx_decode_chunks), (flx_decode_color), (gst_flxdec_loop):
15411           Work.
15412         * gst/modplug/gstmodplug.cc:
15413           Proper return value setting for the query() function.
15414         * gst/playback/gstplaybasebin.c: (setup_source):
15415           Being in non-playing state (after, e.g., EOS) is not necessarily
15416           a bad thing. Allow for that. This fixes playback of short files.
15417           They don't actually playback fully now, because the clock already
15418           runs. This means that small files (<500kB) with a small length
15419           (<2sec) will still not or barely play. Other files, such as mod
15420           or flx, will work correctly, however.
15421
15422 2004-09-28  Wim Taymans  <wim@fluendo.com>
15423
15424         * ext/speex/gstspeex.c: (plugin_init):
15425         * ext/speex/gstspeexdec.c: (gst_speex_dec_base_init),
15426         (gst_speex_dec_class_init), (speex_dec_get_formats),
15427         (speex_get_event_masks), (speex_get_query_types),
15428         (gst_speex_dec_init), (speex_dec_convert), (speex_dec_src_query),
15429         (speex_dec_src_event), (speex_dec_event), (speex_dec_chain),
15430         (gst_speexdec_get_property), (gst_speexdec_set_property),
15431         (speex_dec_change_state):
15432         * ext/speex/gstspeexdec.h:
15433         * ext/speex/gstspeexenc.c: (gst_speexenc_get_formats),
15434         (gst_speexenc_get_type), (speex_caps_factory), (raw_caps_factory),
15435         (gst_speexenc_base_init), (gst_speexenc_class_init),
15436         (gst_speexenc_sinkconnect), (gst_speexenc_convert_src),
15437         (gst_speexenc_convert_sink), (gst_speexenc_get_query_types),
15438         (gst_speexenc_src_query), (gst_speexenc_init),
15439         (gst_speexenc_get_tag_value), (comment_init), (comment_add),
15440         (gst_speexenc_metadata_set1), (gst_speexenc_set_metadata),
15441         (gst_speexenc_setup), (gst_speexenc_buffer_from_data),
15442         (gst_speexenc_push_buffer), (gst_speexenc_set_header_on_caps),
15443         (gst_speexenc_chain), (gst_speexenc_get_property),
15444         (gst_speexenc_set_property), (gst_speexenc_change_state):
15445         * ext/speex/gstspeexenc.h:
15446         Rewrote speex encoder, make sure it can be embedded in ogg.
15447         Implemented speex decoder.
15448
15449 2004-09-28  Christian Schaller <christian@fluendo.com>
15450
15451         * configure.ac:
15452         Remove kioslave plugin. Markey is brewing a new working one
15453         * ext/Makefile.am: Remove kioslave plugin
15454         * ext/kio: remove
15455         * gst-plugins.spec.in: remove kio plugin from spec
15456
15457 2004-09-27  Wim Taymans  <wim@fluendo.com>
15458
15459         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
15460         (gst_multifdsink_remove), (gst_multifdsink_remove_client_link),
15461         (is_sync_frame), (gst_multifdsink_client_queue_buffer),
15462         (gst_multifdsink_new_client),
15463         (gst_multifdsink_handle_client_write),
15464         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
15465         (gst_multifdsink_handle_clients):
15466         * gst/tcp/gstmultifdsink.h:
15467         Make syncing to keyframes actually work for new clients and lagging
15468         clients.
15469
15470 2004-09-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
15471
15472         * gst/debug/gstnavigationtest.c: (gst_navigationtest_class_init),
15473         (gst_navigationtest_handle_src_event), (draw_box_planar411),
15474         (gst_navigationtest_planar411), (gst_navigationtest_change_state):
15475         * gst/debug/gstnavigationtest.h:
15476           make navigationtest display button-press and button-release events
15477
15478 2004-09-26 Iain <iaingnome@gmail.com>
15479
15480         * gst/interleave/interleave.c (all_channels_new_media): Checks if all
15481         the channels have received a new media event.
15482         (interleave_buffered_loop): Compresses a new media event on all
15483         channels into one.
15484
15485 2004-09-26 Iain <iaingnome@gmail.com>
15486
15487         * gst/wavenc/gstwavenc.c (gst_wavenc_chain): Company says we need to
15488         call the sinkpad's default event handler and not the srcpads. He also
15489         says this is confusing :)
15490         (gst_wavenc_stop_file): Company says that seek events only go upstream
15491         we should send a discontinuous downstream instead.
15492
15493 2004-09-25  Christian Schaller <christian@fluendo.com>
15494
15495         * Update SPEC file to be usable in conjunction with Fedora Core,
15496           Fedora.us and freshrpms packages
15497         * Fix typo in multifilesrc test Makefile
15498
15499 2004-09-24  Wim Taymans  <wim@fluendo.com>
15500
15501         * gst/playback/gstplaybasebin.c: (new_decoded_pad):
15502         Only signal the no_more_pads signal when we have
15503         added the stream to our list.
15504
15505 2004-09-24  Wim Taymans  <wim@fluendo.com>
15506
15507         * gst/playback/gstplaybasebin.c: (remove_prerolls),
15508         (new_decoded_pad):
15509         * gst/playback/gstplaybasebin.h:
15510         * gst/playback/gstplaybin.c: (setup_sinks):
15511         Don't try to preroll or decode more than one audio/video
15512         track.
15513
15514 2004-09-24  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15515
15516         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
15517           Throw error if we failed to find a suitable output. This should
15518           throw an error if we successfully set up a pipeline (e.g. because
15519           we recognized a media file) but found no decodable streams in it
15520           (e.g. because it contains only media stream types for which we
15521           have no decoders, or because it's not a media type).
15522
15523 2004-09-23  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15524
15525         * ext/dirac/Makefile.am:
15526         * ext/dirac/gstdirac.cc:
15527         * ext/dirac/gstdiracdec.cc:
15528         * ext/dirac/gstdiracdec.h:
15529           Do something. Don't actually know if this works because I don't
15530           have a demuxer yet.
15531         * ext/gsm/gstgsmdec.c: (gst_gsmdec_getcaps):
15532           Add channels=1 to caps returned from _getcaps().
15533         * ext/ogg/gstogmparse.c: (gst_ogm_audio_parse_get_type),
15534         (gst_ogm_video_parse_get_type), (gst_ogm_audio_parse_base_init),
15535         (gst_ogm_video_parse_base_init), (gst_ogm_parse_init),
15536         (gst_ogm_audio_parse_init), (gst_ogm_video_parse_init),
15537         (gst_ogm_parse_sink_convert), (gst_ogm_parse_chain),
15538         (gst_ogm_parse_change_state):
15539           Separate between audio/video so ogmaudioparse actually uses the
15540           audio pad templates. Both audio and video work now, including
15541           autoplugging. Also use sometimes-srcpad hack.
15542         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
15543           Handle events better. Don't hang on infinite loops.
15544         * gst/avi/gstavidemux.c: (gst_avi_demux_class_init),
15545         (gst_avi_demux_init), (gst_avi_demux_reset),
15546         (gst_avi_demux_src_convert), (gst_avi_demux_handle_src_query),
15547         (gst_avi_demux_stream_header), (gst_avi_demux_stream_data),
15548         (gst_avi_demux_change_state):
15549         * gst/avi/gstavidemux.h:
15550           Improve A/V sync. Still not perfect.
15551         * gst/matroska/ebml-read.c: (gst_ebml_read_seek),
15552         (gst_ebml_read_skip):
15553           Handle events better.
15554         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
15555         (gst_qtdemux_loop_header), (qtdemux_parse_trak),
15556         (qtdemux_audio_caps):
15557           Add IMA4. Improve event handling. Save offset after a seek when
15558           the headers are at the end of the file so that we don't end up in
15559           an infinite loop.
15560         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):
15561           Add low-priority typefind support for files with no length.
15562
15563 2004-09-23  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15564
15565         * testsuite/multifilesink/Makefile.am:
15566         fix typo
15567
15568 2004-09-22  Julien MOUTTE  <julien@moutte.net>
15569
15570         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
15571         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls): Fix
15572         mistakes from thaytan's patches.
15573
15574 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
15575
15576         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy):
15577           For completeness, XSync in the destroy function as xvimage does.
15578
15579 2004-09-23  Jan Schmidt  <thaytan@mad.scientist.com>
15580
15581         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
15582            Correct caps negotiation
15583         * gst/volume/gstvolume.c: (volume_chain_float),
15584         (volume_chain_int16):
15585            Modify debug output to be little more informative
15586         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls):
15587         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15588         (gst_xvimagesink_xvimage_destroy):
15589           Add XSync calls after detaching from the shared memory segment to
15590           avoid a crash.
15591
15592 2004-09-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15593
15594         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
15595         (gst_ogg_mux_next_buffer), (gst_ogg_mux_loop):
15596         * ext/vorbis/vorbis.c: (plugin_init):
15597         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_init),
15598         (gst_vorbisenc_chain):
15599         * ext/vorbis/vorbisenc.h:
15600         remove explicit newmedia support from oggmux and vorbisenc
15601         add debug category to vorbisenc
15602         * gst/multifilesink/gstmultifilesink.c:
15603         (gst_multifilesink_class_init), (gst_multifilesink_init),
15604         (gst_multifilesink_dispose), (gst_multifilesink_set_location),
15605         (gst_multifilesink_set_property), (gst_multifilesink_next_file),
15606         (gst_multifilesink_handle_event), (gst_multifilesink_chain),
15607         (plugin_init):
15608         * gst/multifilesink/gstmultifilesink.h:
15609         add support for streamheader in multifilesink
15610
15611 2004-09-22  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15612
15613         * gst/asfdemux/gstasfdemux.c: (_read_var_length), (_read_guid),
15614         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data),
15615         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event):
15616           Prevent infinite loops. More correct error reporting.
15617         * gst/auparse/gstauparse.c: (gst_auparse_chain):
15618           Error out if negotiation fails.
15619         * gst/playback/gstplaybasebin.c: (setup_source),
15620         (gst_play_base_bin_change_state), (gst_play_base_bin_error),
15621         (gst_play_base_bin_found_tag):
15622           Error/tag forwarding. Pre-roll fixes for source errors on state
15623           changes (e.g. "file does not exist") to prevent hangs.
15624
15625 2004-09-21  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15626
15627         * testsuite/multifilesink/Makefile.am:
15628         * testsuite/multifilesink/lame_test.c: (gst_newmedia_base_init),
15629         (gst_newmedia_class_init), (gst_newmedia_init),
15630         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
15631         (newfile_signal), (test_signal), (main):
15632         * testsuite/multifilesink/multifilesrc_test.c: (main):
15633         * testsuite/multifilesink/oggtheora_test.c:
15634         (gst_newmedia_base_init), (gst_newmedia_class_init),
15635         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
15636         (test_format), (newfile_signal), (test_signal), (main):
15637         * testsuite/multifilesink/oggvorbis_test.c:
15638         (gst_newmedia_base_init), (gst_newmedia_class_init),
15639         (gst_newmedia_init), (gst_newmedia_chain), (gst_newmedia_trigger),
15640         (test_format), (newfile_signal), (test_signal), (main):
15641         * testsuite/multifilesink/wavenc_test.c: (gst_newmedia_base_init),
15642         (gst_newmedia_class_init), (gst_newmedia_init),
15643         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
15644         (newfile_signal), (test_signal), (main):
15645         New media tests
15646
15647 2004-09-20  Christian Schaller <christian@fluendo.com>
15648
15649         * Fix mikmod license to LGPL as they have relicensed
15650         * Move Dirac and Effectv into LGPL section of README_license
15651
15652 2004-09-20  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15653
15654         * ext/mad/gstmad.c: (gst_mad_check_caps_reset),
15655         (gst_mad_change_state):
15656           Allow for mp3 rate/channels changes. However, only very
15657           conservatively. Reason that we *have* to enable this is smiply
15658           because the mad find_sync() function is not good enough, it will
15659           regularly sync on random data as valid frames and therefore make
15660           us provide random caps as *final* caps of the stream. The best fix
15661           I could think of is to simply require several of the same stream
15662           changes in a row before we change caps.
15663           The actual testcase that works now is #
15664         * ext/ogg/Makefile.am:
15665         * ext/ogg/gstogg.c: (plugin_init):
15666         * ext/ogg/gstogmparse.c:
15667           OGM support (video only for now; I need an audio sample file).
15668         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
15669         (gst_asf_demux_process_stream), (gst_asf_demux_video_caps),
15670         (gst_asf_demux_add_video_stream):
15671           WMV extradata.
15672         * gst/playback/gstplaybasebin.c: (unknown_type):
15673           Don't error out on single unknown-types after all. It's wrong.
15674           If we found type of video and audio but not of a subtitle stream,
15675           it will still error out (which is unwanted). Will find a better fix
15676           later on.
15677         * gst/typefind/gsttypefindfunctions.c: (ogmvideo_type_find),
15678         (ogmaudio_type_find), (plugin_init):
15679           OGM support.
15680
15681 2004-09-20  Johan Dahlin  <johan@gnome.org>
15682
15683         * ext/jpeg/gstjpegdec.c (gst_jpegdec_chain): Allocate the buffer
15684         after setting caps.
15685
15686 2004-09-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
15687
15688         * gst/wavenc/gstwavenc.c: (gst_wavenc_init), (gst_wavenc_chain):
15689         * gst/wavenc/gstwavenc.h:
15690         Added newmedia support to wavenc
15691
15692 2004-09-17  Wim Taymans  <wim@fluendo.com>
15693
15694         * gst/tcp/gstfdset.c: (gst_fdset_fd_has_closed),
15695         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
15696         (gst_fdset_fd_can_write), (gst_fdset_wait):
15697         * gst/tcp/gstmultifdsink.c: (gst_client_status_get_type),
15698         (gst_multifdsink_init), (gst_multifdsink_add),
15699         (gst_multifdsink_remove), (gst_multifdsink_get_stats),
15700         (gst_multifdsink_remove_client_link),
15701         (gst_multifdsink_client_queue_buffer),
15702         (gst_multifdsink_handle_client_write),
15703         (gst_multifdsink_recover_client), (gst_multifdsink_handle_clients),
15704         (gst_multifdsink_close), (gst_multifdsink_change_state):
15705         * gst/tcp/gstmultifdsink.h:
15706         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
15707         (gst_tcpserversink_removed):
15708         Small cleanups in fdset.c
15709         Use a hastable to map fd to the client structure for faster
15710         lookup in _remove and get_stats.
15711         Added virtual function to close the fds.
15712         Handle clients even when the select/poll call was unblocked because
15713         of a command.
15714         Implement syncing to keyframe in the recovery procedure.
15715
15716 2004-09-16 Iain <iaingnome@gmail.com>
15717
15718         * gst/audioconvert/gstaudioconvert.c (_fixate_caps_to_int): Free the
15719         try caps.
15720
15721 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15722
15723         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream):
15724           Caps are only set if the type of the stream is unknown, but this
15725           is initialized in ->init_stream(), so set to UNKNOWN after calling
15726           ->init_stream() so that capsnego starts.
15727
15728 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15729
15730         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
15731         (gst_avi_demux_stream_data):
15732           Just hardcode for raw audio then. AVI audio sucks.
15733
15734 2004-09-15  Arwed v. Merkatz  <v.merkatz@gmx.net>
15735
15736         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
15737         * gst/matroska/matroska-mux.c: (audiosink_templ),
15738         (gst_matroska_mux_audio_pad_link):
15739         * gst/typefind/gsttypefindfunctions.c: (tta_caps), (plugin_init):
15740         Use audio/x-ttafile for tta files and audio/x-tta for raw tta frames.
15741
15742 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15743
15744         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
15745         (gst_avi_demux_stream_data):
15746           Try to fix a/v sync issues.
15747
15748 2004-09-15  David Schleef  <ds@schleef.org>
15749
15750         * configure.ac: remove NASM check, since we don't use it.  Update
15751         dirac check to 0.4
15752         * ext/dirac/gstdiracdec.cc: update to current 0.4 API
15753         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
15754         Initialized variables.
15755         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
15756         (gst_qtdemux_loop_header), (qtdemux_parse), (qtdemux_parse_trak),
15757         (gst_qtdemux_handle_esds), (qtdemux_audio_caps): Fix seeking, add
15758         SVQ3 format
15759
15760 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15761
15762         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
15763         (gst_avi_demux_add_stream), (gst_avi_demux_stream_data):
15764         * gst/avi/gstavidemux.h:
15765           Fix for compressed audio (mp3) timestamp generation. How did this
15766           ever work?
15767
15768 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15769
15770         * gst/playback/gstplaybin.c: (gst_play_bin_get_property):
15771           Volume is a double not a float.
15772
15773 2004-09-15  Wim Taymans  <wim@fluendo.com>
15774
15775         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_remove_client_link),
15776         (gst_multifdsink_handle_clients), (gst_multifdsink_change_state):
15777         Don't close the fd in multifdsink as we didn't open it in the
15778         first place. Some cleanups.
15779
15780 2004-09-15  Wim Taymans  <wim@fluendo.com>
15781
15782         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
15783         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
15784         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
15785         Fix the case where the muxer would mark pages as delta
15786         frames when they are not (vorbis only ogg).
15787
15788 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15789
15790         * gst/playback/gstplaybasebin.c: (state_change), (setup_source),
15791         (gst_play_base_bin_change_state):
15792           Handle the case where we failed to setup a clear pipeline. This
15793           will throw an error (or EOS, another nice case) and if you don't
15794           catch that, the app will wait for the signal forever (and thus
15795           hang).
15796
15797 2004-09-15  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15798
15799         * ext/gnomevfs/gstgnomevfssink.c:
15800         (gst_gnomevfssink_uri_get_protocols):
15801         * ext/gnomevfs/gstgnomevfssrc.c:
15802         (gst_gnomevfssrc_uri_get_protocols):
15803         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
15804         * ext/gnomevfs/gstgnomevfsuri.h:
15805           Use _uri_new() instead of _open(), so it doesn't take as long and
15806           Christophe's computer won't hang.
15807         * gst/playback/gstplaybasebin.c: (unknown_type):
15808           Throw error on unknown media type, so apps actually display it.
15809
15810 2004-09-14  Brian Cameron  <brian.cameron@sun.com
15811
15812         * tools/gst-launch-ext-m.m:  Changed ~ to $ENV{HOME} to allow
15813           this script to work on Solaris since bash shell handles echo
15814           differenly than bash.
15815
15816 2004-09-17  Wim Taymans  <wim@fluendo.com>
15817
15818         * gst/playback/gstplaybasebin.c: (queue_overrun), (no_more_pads),
15819         (setup_source), (gst_play_base_bin_set_property),
15820         (gst_play_base_bin_add_element):
15821         * gst/playback/gstplaybin.c: (gst_play_bin_send_event):
15822         Some more work on making sure seeking pauses the pipeline and
15823         that changing the uri actually does something.
15824
15825 2004-09-17  Wim Taymans  <wim@fluendo.com>
15826
15827         * gst/tcp/gstfdset.c: (gst_fdset_wait):
15828         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_close):
15829         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init_send),
15830         (gst_tcpserversink_close):
15831         Be a bit more paranoid when freeing memory.
15832
15833 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15834
15835         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
15836         (qtdemux_parse_trak):
15837           Don't crash by dividing by zero (see sample movie in #126922).
15838
15839 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15840
15841         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
15842           Don't touch non-existing data (fixes crash on file in #140147).
15843
15844 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15845
15846         * gst/playback/gstplaybasebin.c:
15847         (gst_play_base_bin_dispose), (gst_play_base_bin_set_property):
15848           Handle double disposals, and proper change of URIs.
15849
15850 2004-09-13  Martin Eikermann <meiker@upb.de>
15851
15852         * gst/mpegstream/gstmpegparse.c:
15853           fix synchronistation for streams recorded from digital PCR
15854           fixes bug #119376
15855
15856 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15857
15858         * ext/gnomevfs/Makefile.am:
15859         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
15860         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_get_type),
15861         (gst_gnomevfssink_dispose), (gst_gnomevfssink_init),
15862         (gst_gnomevfssink_uri_get_type),
15863         (gst_gnomevfssink_uri_get_protocols),
15864         (gst_gnomevfssink_uri_get_uri), (gst_gnomevfssink_uri_set_uri),
15865         (gst_gnomevfssink_uri_handler_init),
15866         (gst_gnomevfssink_set_property), (gst_gnomevfssink_get_property),
15867         (gst_gnomevfssink_open_file), (gst_gnomevfssink_close_file):
15868         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_type),
15869         (gst_gnomevfssrc_init), (gst_gnomevfssrc_dispose),
15870         (gst_gnomevfssrc_uri_get_type),
15871         (gst_gnomevfssrc_uri_get_protocols), (gst_gnomevfssrc_uri_get_uri),
15872         (gst_gnomevfssrc_uri_set_uri), (gst_gnomevfssrc_uri_handler_init),
15873         (gst_gnomevfssrc_set_property), (gst_gnomevfssrc_get_property),
15874         (gst_gnomevfssrc_open_file), (gst_gnomevfssrc_close_file):
15875         * ext/gnomevfs/gstgnomevfsuri.c: (gst_gnomevfs_get_supported_uris):
15876         * ext/gnomevfs/gstgnomevfsuri.h:
15877           Add URI support to Gnome-VFS plugins. Tries to load a fixed list
15878           of fake URIs to see which this version of Gnome-VFS likes, and
15879           uses that for the Gst-URI interface. Makes playbin support http://
15880           streams. Also fix up some stupid behaviour in gnomevfssrc.
15881
15882 2004-09-13  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15883
15884         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_update),
15885         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
15886         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record),
15887         (gst_alsa_mixer_set_option), (gst_alsa_mixer_get_option):
15888           Update mixer (to sync with other sessions) if we try to obtain
15889           a new value. This makes alsamixer work accross applications.
15890         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
15891           Only call sync functions if we're running, else alsalib asserts.
15892         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
15893           Sometimes fails to compile. Possibly a gcc bug.
15894         * gst/playback/gstplaybin.c: (gen_video_element),
15895         (gen_audio_element):
15896           Add a reference to an application-provided object, because we lose
15897           this same reference if we add it to the bin. If we don't do this,
15898           we can only use this object once and thus crash if we go from
15899           ready to playing, back to ready and back to playing again.
15900           Also add an audioscale element because several cheap soundcards -
15901           like mine - don't support all samplerates.
15902         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
15903         (gst_ximagesink_xcontext_clear), (gst_ximagesink_change_state):
15904           Fix wrong order or PAR calls. Makes automatically obtained PAR
15905           from the X server atually being used.
15906
15907 2004-09-12  David Schleef  <ds@schleef.org>
15908
15909         Fixes: #151879, #151881, #151882, #151883, #151884, #151886,
15910         #151887, #152102, #152247.
15911         * examples/indexing/indexmpeg.c: 64-bit warning fixes.
15912         * examples/seeking/cdparanoia.c: same
15913         * examples/seeking/cdplayer.c: same
15914         * examples/seeking/seek.c: same
15915         * examples/seeking/spider_seek.c: same
15916         * examples/seeking/vorbisfile.c: same
15917         * examples/stats/mp2ogg.c: same
15918         * ext/esd/esdsink.c: (gst_esdsink_class_init),
15919         (gst_esdsink_dispose): Dispose of element properly.
15920         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_seek): 64-bit warning
15921         fixes.
15922         * ext/nas/nassink.c: (gst_nassink_class_init),
15923         (gst_nassink_dispose): Dispose of element correctly.
15924         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain): Fix leak.
15925         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
15926         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
15927         Fix 64-bit warning.
15928         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
15929         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
15930         Fix 64-bit warning.
15931
15932 2004-09-12  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
15933
15934         * configure.ac : change speex detection as 1.1.6 now uses
15935           .pc/pkg-config and they changed their headers location.
15936
15937 2004-09-09  Arwed v. Merkatz  <v.merkatz@gmx.net>
15938
15939         * gst/matroska/matroska-mux.h:
15940         * gst/matroska/matroska-mux.c: (gst_matroska_mux_reset),
15941         (gst_matroska_mux_start), (gst_matroska_mux_finish),
15942         (gst_matroska_mux_write_data):
15943           Write multiple blocks/frames per cluster.
15944                 Write meta-seek information (seek heads).
15945
15946 2004-09-09  Scott Wheeler <wheeler@kde.org>
15947
15948         * gst/gstplaybin.c: (gst_play_bin_class_init), (gst_play_bin_init),
15949         (gst_play_bin_set_property), (gst_play_bin_get_property),
15950         (gen_audio_element), (gen_audio_element):
15951           Add a volume element / property to the pipeline.
15952
15953 2004-09-07  Wim Taymans  <wim@fluendo.com>
15954
15955         * gst/videomixer/videomixer.c: (gst_videomixer_blend_buffers):
15956         Copy timestamps from the master pad to the output buffers.
15957
15958 2004-09-03  Thomas Vander Stichele  <thomas at apestaart dot org>
15959
15960         * ext/raw1394/gstdv1394src.c:
15961           throw errors when applicable
15962
15963 2004-09-01  Arwed v. Merkatz  <v.merkatz@gmx.net>
15964
15965         * gst/matroska/ebml-ids.h:
15966         * gst/matroska/ebml-read.c: (gst_ebml_read_date):
15967         * gst/matroska/ebml-write.c: (gst_ebml_write_date):
15968         * gst/matroska/matroska-mux.c: (gst_matroska_mux_finish):
15969           automatically convert unix time <-> ebml time when reading/writing
15970           a date, use gst_ebml_write_uint to write CUETIME,
15971           not gst_ebml_write_date.
15972         * gst/matroska/matroska-ids.h:
15973         * gst/matroska/matroska-mux.c: (gst_matroska_mux_create_uid),
15974         (gst_matroska_mux_reset), (gst_matroska_mux_audio_pad_link),
15975         (gst_matroska_mux_track_header), (gst_matroska_mux_start),
15976         (gst_matroska_mux_write_data):
15977           Write track and segment UIDs, write muxing date, write
15978           TRACKDEFAULTDURATION for TTA audio, write BLOCKDURATION if known.
15979           Create cues for audio only files.
15980
15981 2004-08-31  Ronald S. Bultje  <rbultje@ronald.bitfreak.net>
15982
15983         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
15984         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
15985           Re-commit ALSA switches.
15986         * gst/adder/gstadder.c: (gst_adder_loop):
15987           64-bit fix (#151416).
15988         * gst/debug/progressreport.c: (gst_progressreport_report):
15989           64-bit fix (#151419).
15990         * gst/matroska/matroska-demux.c:
15991         (gst_matroska_demux_parse_contents):
15992           64-bit fix (#151420).
15993         * gst/playback/test3.c: (update_scale):
15994           64-bit fix (#151421).
15995
15996 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
15997
15998         * configure.ac:
15999           bump nano to cvs
16000
16001 === release 0.8.4 ===
16002
16003 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16004
16005         * configure.ac: releasing 0.8.4, "Alias"
16006
16007 2004-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
16008
16009         * ext/theora/Makefile.am:
16010           fix makefile.  Fixes #151462.
16011
16012 2004-08-30  Wim Taymans  <wim@fluendo.com>
16013
16014         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_wait):
16015         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
16016         (gst_multifdsink_remove_client_link),
16017         (gst_multifdsink_client_queue_buffer),
16018         (gst_multifdsink_handle_client_write):
16019         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
16020         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
16021         Fix some memory leaks.
16022
16023 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16024
16025         Patch by: David Schleef
16026
16027         * configure.ac:
16028         * sys/Makefile.am:
16029           rename our detection macro for V4L2.  Fixes #151236.
16030
16031 2004-08-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16032
16033         Patch by: David Schleef
16034
16035         * configure.ac:
16036           check to define LAMEPRESET.  Fixes #151232.
16037
16038 2004-08-27  David Schleef  <ds@schleef.org>
16039
16040         * sys/glsink/glimagesink.c: (gst_glimagesink_ximage_put),
16041         (gst_glimagesink_xwindow_new), (gst_glimagesink_xcontext_get),
16042         (gst_glimagesink_fixate):  Move local variable declarations to
16043         make gcc-2.95 happy.
16044
16045 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16046
16047         * configure.ac:
16048           bump nano for prerelease
16049
16050 2004-08-27  David Schleef  <ds@schleef.org>
16051
16052         * sys/sunaudio/Makefile.am: Add sunaudiosrc patch from Bala
16053         * sys/sunaudio/gstsunaudiosrc.c:
16054         * sys/sunaudio/gstsunaudiosrc.h:
16055
16056 2004-08-27 Arwed v. Merkatz <v.merkatz@gmx.net>
16057
16058         * gst/matroska/ebml-read.c: (gst_ebml_peed_id), (gst_ebml_read_element_id),
16059         handle EOS correctly
16060         * gst/matroska/matroska-mux.c: (gst_matroska_mux_video_pad_link):
16061         * gst/matroska/matroska-mux.h:
16062         added BITMAPINFOHEADER structure, mux video/x-divx and video/x-xvid in
16063         VFW compatibility mode
16064
16065 2004-08-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16066
16067         patch by: Zaheer Abbas Merali
16068
16069         * ext/ogg/gstoggmux.c:
16070         * ext/vorbis/vorbisenc.c:
16071         * ext/vorbis/vorbisenc.h:
16072           handle NEWMEDIA
16073
16074 2004-08-26 Arwed v. Merkatz <v.merkatz@gmx.net>
16075
16076         * gst/matroska/ebml-write.c: (gst_ebml_write_float),
16077         fix byte order reversion on little endian machines.
16078         * gst/matroska/matroska-mux.c: (audiosink_templ),
16079         (gst_matroska_mux_audio_pad_link):
16080         add TTA codec to the list of supported codecs.
16081         * gst/matroska/matroska-mux.c: (gst_matroska_mux_init),
16082         (gst_matroska_mux_start), (gst_matroska_mux_finish),
16083         (gst_matroska_mux_write_data):
16084         * gst/matroska/matroska-mux.h:
16085         write segment duration correctly, write muxing app string, fixes bugs
16086         #140897 and #140898.
16087         * gst/matroska/matroska-mux.c: (gst_matroska_mux_loop),
16088         wait for all pads to be negotiated before starting to mux.
16089
16090 2004-08-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16091
16092         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain):
16093         * ext/lame/gstlame.h:
16094         Added new media support to lame
16095
16096 2004-08-25 Arwed v. Merkatz <v.merkatz@gmx.net>
16097
16098         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_blockgroup),
16099         send vorbis headers at the beginning of a stream, fixes bug #141554.
16100         Interpret BLOCKDURATION and set buffer duration accordingly, fixes
16101         bug #148950.
16102         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps),
16103         (gst_matroska_demux_plugin_init):
16104         * gst/matroska/matroska-ids.h:
16105         enable demuxing of TTA audio streams, fixes bug #148951.
16106         * gst/typefind/gsttypefindfunctions.c: (tta_type_find), (plugin_init),
16107         enable typefinding for TTA audio files, fixes bug #148711.
16108         * ext/xvid/gstxviddec.c: (gst_xviddec_chain),
16109         set XVID_LOWDELAY flag for decoding so xvid always returns an image,
16110         fixes playback of packed bitstream and xvid with bframes, bug #135407.
16111
16112 2004-08-24  Sebastien Cote  <sc5@hermes.usherb.ca>
16113
16114         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
16115         (gst_riff_read_element_data), (gst_riff_read_seek),
16116         (gst_riff_read_skip): fix infinite loop in wavparse, fixes bug
16117         #144616, patch reviewed by Ronald and committed by Christophe Fergeau
16118         <teuf@gnome.org>
16119
16120 2004-08-23 Iain <iaingnome@gmail.com>
16121
16122         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): Special case COMM
16123         tags. They appear to be handled differently to normal.
16124         (tag_list_to_id3_tag_foreach): Ditto.
16125
16126 2004-08-22  Wim Taymans  <wim@fluendo.com>
16127
16128         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
16129         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
16130         Make sure we never send -1 granulepos.
16131
16132 2004-08-20  Wim Taymans  <wim@fluendo.com>
16133
16134         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
16135         (gst_ogg_mux_loop):
16136         I will accept bitchslappings with non sharp objects.
16137
16138 2004-08-20  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16139
16140         * configure.ac:
16141         Clean up the test for lame presets
16142
16143 2004-08-19  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16144
16145         * configure.ac:
16146         * ext/lame/Makefile.am:
16147         * ext/lame/gstlame.c: (gst_lame_class_init),
16148         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
16149         Only enable lame presets if version of lame has presets in API
16150
16151 2004-08-19  Jan Schmidt  <thaytan@mad.scientist.com>
16152         * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_get):
16153         * gst/udp/gstudpsrc.h:
16154           Don't call gst_pad_push in a get function. Fixes #150449
16155
16156 2004-08-18  Wim Taymans  <wim@fluendo.com>
16157
16158         * gst/tcp/gstfdset.c: (gst_fdset_free), (gst_fdset_set_mode),
16159         (gst_fdset_get_mode), (gst_fdset_add_fd), (gst_fdset_remove_fd),
16160         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
16161         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
16162         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
16163         (gst_fdset_wait):
16164         * gst/tcp/gstfdset.h:
16165         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
16166         (gst_multifdsink_client_queue_buffer),
16167         (gst_multifdsink_handle_client_write):
16168         * gst/tcp/gstmultifdsink.h:
16169         Some extra checks in gstfdset.
16170         Only use send() when the fd is a socket. Don't try to
16171         read from write only fds.
16172
16173 2004-08-18  Wim Taymans  <wim@fluendo.com>
16174
16175         * gst/tcp/gstfdset.c: (gst_fdset_add_fd), (gst_fdset_remove_fd),
16176         (gst_fdset_fd_ctl_write), (gst_fdset_fd_ctl_read),
16177         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
16178         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
16179         (gst_fdset_wait):
16180         Add more locking and bounds checking.
16181
16182 2004-08-18  Wim Taymans  <wim@fluendo.com>
16183
16184         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_wait):
16185         Realloc test fdset in the lock and right before starting
16186         the poll call. Bump the limit to 4096.
16187
16188 2004-08-17  David Schleef  <ds@schleef.org>
16189
16190         * sys/sunaudio/Makefile.am:
16191         * sys/sunaudio/gstsunaudio.c: Fix caps to handle full range
16192         of rates and channels.  Make debugging less obnoxious.
16193
16194         Patch from Balamurali Viswanathan implementing a mixer for
16195         Sun audio.  (bug #144091):
16196         * sys/sunaudio/gstsunelement.c:
16197         * sys/sunaudio/gstsunelement.h:
16198         * sys/sunaudio/gstsunmixer.c:
16199         * sys/sunaudio/gstsunmixer.h:
16200
16201 2004-08-17  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16202
16203         * gst/audioscale/gstaudioscale.c:
16204         * gst/audioscale/gstaudioscale.h:
16205         made audioscale resample from any sample rate to any sample rate
16206
16207 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16208
16209         * ext/libpng/gstpngdec.c:
16210           error out on unsupported types
16211
16212 2004-08-17  Iain <iaingnome@gmail.com>
16213
16214         * ext/flac/gstflacenc.c (gst_flacenc_update_quality): Only set the
16215         mid_side and loose_mid_side properties if its a stereo stream.
16216
16217 2004-08-17  Wim Taymans  <wim@fluendo.com>
16218
16219         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16220         (theora_get_formats), (theora_dec_src_convert),
16221         (theora_dec_sink_convert), (theora_dec_src_query),
16222         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
16223         Add a debug line.
16224
16225 2004-08-17  Wim Taymans  <wim@fluendo.com>
16226
16227         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_iterate),
16228         (gst_ogg_pad_push):
16229         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
16230         (gst_ogg_mux_request_new_pad), (gst_ogg_mux_next_buffer),
16231         (gst_ogg_mux_buffer_from_page), (gst_ogg_mux_push_page),
16232         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
16233         Mark delta units in the muxer.
16234         Try to decode the packet after an out-of-sync error from
16235         libogg.
16236
16237 2004-08-17  Wim Taymans  <wim@fluendo.com>
16238
16239         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16240         (gst_multifdsink_init), (gst_multifdsink_add),
16241         (gst_multifdsink_client_queue_buffer),
16242         (gst_multifdsink_set_property), (gst_multifdsink_get_property):
16243         * gst/tcp/gstmultifdsink.h:
16244         Added option to send a keyframe to clients as the first buffer.
16245         Make timeout property writable.
16246
16247 2004-08-17  Thomas Vander Stichele  <thomas at apestaart dot org>
16248
16249         patch by: Wim Taymans
16250
16251         * gst/tcp/gstfdset.c:
16252         * gst/tcp/gstmultifdsink.c:
16253           fix index comparison, should include 0
16254
16255 2004-08-16  Wim Taymans  <wim@fluendo.com>
16256
16257         * gst/tcp/gstfdset.c: (ensure_size), (gst_fdset_new),
16258         (gst_fdset_add_fd), (gst_fdset_remove_fd),
16259         (gst_fdset_fd_has_closed), (gst_fdset_fd_has_error),
16260         (gst_fdset_fd_can_read), (gst_fdset_fd_can_write),
16261         (gst_fdset_wait):
16262           copy when reallocing for poll so the select arguments don't get
16263           changed during the call
16264
16265 2004-08-16  Wim Taymans  <wim@fluendo.com>
16266
16267         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
16268         (gst_theora_enc_class_init), (theora_enc_sink_link),
16269         (theora_buffer_from_packet), (theora_enc_chain):
16270         Fix bug where buffers were not marked as keyframes
16271         correctly.
16272
16273 2004-08-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16274
16275         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
16276         (gst_lame_preset_get_type), (gst_lame_class_init):
16277         describe the enum values for vbr mode and presets more verbosely
16278
16279 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16280
16281         * ext/lame/gstlame.c: (gst_lame_mode_get_type),
16282         (gst_lame_quality_get_type), (gst_lame_padding_get_type),
16283         (gst_lame_preset_get_type), (gst_lame_class_init), (gst_lame_init),
16284         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_setup):
16285         * ext/lame/gstlame.h:
16286         add preset property to lame so it can use lame presets
16287
16288 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16289
16290         * ext/lame/gstlame.c: (gst_lame_get_property):
16291         whoops forgot break, thanks teuf
16292
16293 2004-08-13  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16294
16295         * ext/lame/gstlame.c: (gst_lame_vbrmode_get_type),
16296         (gst_lame_class_init), (gst_lame_src_getcaps),
16297         (gst_lame_sink_link), (gst_lame_init), (gst_lame_set_property),
16298         (gst_lame_get_property), (gst_lame_setup):
16299         * ext/lame/gstlame.h:
16300         fix lame's broken vbr stuff, allow it to resample if need be, and also
16301         make xing header optional
16302
16303 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16304
16305         * ext/lame/gstlame.c: (gst_lame_src_getcaps), (gst_lame_init):
16306         added getcaps function so samplerate doesnt get fixated to silly values
16307
16308 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16309
16310         * ext/lame/gstlame.c: (gst_lame_src_link):
16311         revert previous fix
16312
16313 2004-08-12  Johan Dahlin  <johan@gnome.org>
16314
16315         * sys/v4l/gstv4lelement.c (gst_v4l_iface_supported): Remove bogus
16316         checks. Doesn't matter what state we are in. Interfaces are a
16317         compile time thing, not runtime. It also broke the python bindings.
16318
16319 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16320
16321         * ext/lame/gstlame.c: (gst_lame_src_link):
16322         made source pad link function check if sinkpad is ok..fixes the problem
16323         where core fixates the output rate of lame stupidly
16324
16325 2004-08-12  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
16326
16327         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_src_link), (gst_v4lsrc_fixate):
16328         * sys/v4l/v4l_calls.c:
16329         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_set_capture):
16330           fix fixate function to handle nonsimple caps.
16331           remove bogus check in _link
16332           cleanups
16333
16334 2004-08-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16335
16336         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init):
16337         set default compression ratio parameter to 0.0 so bitrate parameter
16338         works :)
16339
16340 2004-08-11  David Schleef  <ds@schleef.org>
16341
16342         * gst/tcp/gstfdset.c: Fix compile problem on OS/X.
16343
16344 2004-08-11  David Schleef  <ds@schleef.org>
16345
16346         * gst/mpeg1sys/gstmpeg1systemencode.c: Oops, this was correct
16347         before.
16348
16349 2004-08-11  David Schleef  <ds@schleef.org>
16350
16351         * gst-libs/gst/video/videosink.h: Change copyright block to LGPL.
16352
16353 2004-08-11  David Schleef  <ds@schleef.org>
16354
16355         * ext/pango/gsttextoverlay.c: Add copyright block and fix plugin
16356           license field
16357         * gst-libs/gst/idct/Makefile.am: Remove mmx/sse code
16358         * gst-libs/gst/video/gstvideosink.c: Change copyright block to
16359           LGPL.
16360         * gst/auparse/gstauparse.c: Fix plugin license field.
16361         * gst/monoscope/gstmonoscope.c: Fix plugin license field.
16362         * gst/mpeg1sys/gstmpeg1systemencode.c: Fix plugin license field.
16363         * gst/rtp/gstrtp.c: Fix plugin license field.
16364
16365 2004-08-11  Wim Taymans  <wim@fluendo.com>
16366
16367         * gst/tcp/Makefile.am:
16368         * gst/tcp/gstfdset.c: (gst_fdset_mode_get_type), (nearest_pow),
16369         (ensure_size), (gst_fdset_new), (gst_fdset_free),
16370         (gst_fdset_set_mode), (gst_fdset_get_mode), (gst_fdset_add_fd),
16371         (gst_fdset_remove_fd), (gst_fdset_fd_ctl_write),
16372         (gst_fdset_fd_ctl_read), (gst_fdset_fd_has_closed),
16373         (gst_fdset_fd_has_error), (gst_fdset_fd_can_read),
16374         (gst_fdset_fd_can_write), (gst_fdset_wait):
16375         * gst/tcp/gstfdset.h:
16376         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
16377         (gst_multifdsink_class_init), (gst_multifdsink_init),
16378         (gst_multifdsink_add), (gst_multifdsink_remove),
16379         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
16380         (gst_multifdsink_remove_client_link),
16381         (gst_multifdsink_handle_client_read),
16382         (gst_multifdsink_client_queue_data),
16383         (gst_multifdsink_client_queue_caps),
16384         (gst_multifdsink_client_queue_buffer),
16385         (gst_multifdsink_handle_client_write),
16386         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16387         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
16388         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
16389         (gst_multifdsink_close):
16390         * gst/tcp/gstmultifdsink.h:
16391         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
16392         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
16393         (gst_tcpserversink_handle_wait), (gst_tcpserversink_init_send),
16394         (gst_tcpserversink_close):
16395         * gst/tcp/gsttcpserversink.h:
16396         Abstracted away the select call, implemented poll (yes we ran into
16397         the 1024 limit in production).
16398
16399 2004-08-11  Thomas Vander Stichele  <thomas at apestaart dot org>
16400
16401         * gst/tcp/gsttcp.c:
16402         * gst/tcp/gsttcpplugin.c:
16403           improve debuggging, remove assert
16404
16405 2004-08-10  Wim Taymans  <wim@fluendo.com>
16406
16407         * gst/tcp/gstmultifdsink.c: (gst_unit_type_get_type),
16408         (gst_client_status_get_type), (gst_multifdsink_class_init),
16409         (gst_multifdsink_init), (gst_multifdsink_remove_client_link),
16410         (gst_multifdsink_handle_client_read),
16411         (gst_multifdsink_handle_client_write),
16412         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
16413         (gst_multifdsink_handle_clients), (gst_multifdsink_set_property),
16414         (gst_multifdsink_get_property):
16415         * gst/tcp/gstmultifdsink.h:
16416         * gst/tcp/gsttcp-marshal.list:
16417         Starting to prepare for specifying buffer time in other units
16418         than buffers. Expose remove reason in signal.
16419
16420 2004-08-10  Wim Taymans  <wim@fluendo.com>
16421
16422         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_add),
16423         (gst_multifdsink_remove), (gst_multifdsink_clear),
16424         (gst_multifdsink_remove_client_link),
16425         (gst_multifdsink_handle_client_read),
16426         (gst_multifdsink_client_queue_data),
16427         (gst_multifdsink_client_queue_buffer),
16428         (gst_multifdsink_handle_client_write),
16429         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients),
16430         (gst_multifdsink_chain), (gst_multifdsink_close):
16431         * gst/tcp/gstmultifdsink.h:
16432         Added more debugging info. Changed the way clients are
16433         removed from the lists. Fixed a bug where a bad file descriptor
16434         could cause many clients to be removed.
16435
16436 2004-08-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16437
16438         * gst/videotestsrc/gstvideotestsrc.c: (generate_capslist):
16439           allow all pixel-aspect-ratios, not just 1:1
16440
16441 2004-08-09  David Schleef  <ds@schleef.org>
16442
16443         * sys/glsink/ARB_multitexture.h:  Remove old files.
16444         * sys/glsink/EXT_paletted_texture.h:
16445         * sys/glsink/NV_register_combiners.h:
16446         * sys/glsink/gstgl_nvimage.c:
16447         * sys/glsink/gstgl_pdrimage.c:
16448         * sys/glsink/gstgl_rgbimage.c:
16449         * sys/glsink/gstglsink.c:
16450         * sys/glsink/gstglsink.h:
16451         * sys/glsink/gstglxwindow.c:
16452         * sys/glsink/regcomb_yuvrgb.c:
16453
16454 2004-08-09  David Schleef  <ds@schleef.org>
16455
16456         Patch from Gernot Ziegler <gz@lysator.liu.se> rewriting the
16457         GL sink plugin.  (Bug #147302)
16458
16459         * configure.ac: Test for OpenGL
16460         * sys/Makefile.am: Use test for OpenGL
16461         * sys/glsink/Makefile.am:
16462         * sys/glsink/glimagesink.c: rewrite
16463         * sys/glsink/glimagesink.h: rewrite
16464
16465 2004-08-09  David Schleef  <ds@schleef.org>
16466
16467         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_base_init):  Only allow
16468         sane framerates.
16469         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get): same
16470         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support): same
16471         * testsuite/gst-lint: Test for G_GUINT64_FORMAT usage near gettext.
16472
16473 2004-08-09  Wim Taymans  <wim@fluendo.com>
16474
16475         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16476         (gst_multifdsink_add), (gst_multifdsink_get_stats),
16477         (gst_multifdsink_client_remove),
16478         (gst_multifdsink_handle_client_read),
16479         (gst_multifdsink_handle_client_write),
16480         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
16481         Do a bit more logging, make the client_read code more robust.
16482
16483 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16484
16485         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init_source),
16486         (gst_jpegdec_fill_input_buffer), (gst_jpegdec_skip_input_data),
16487         (gst_jpegdec_resync_to_restart), (gst_jpegdec_term_source),
16488         (gst_jpegdec_init), (gst_jpegdec_chain):
16489         * gst/multipart/multipartdemux.c: (gst_multipart_demux_init),
16490         (gst_multipart_demux_chain), (gst_multipart_demux_change_state):
16491           cleanups, debugging fixes and memleak plugging
16492
16493 2004-08-09  Wim Taymans  <wim@fluendo.com>
16494
16495         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16496         (theora_get_formats), (theora_dec_src_convert),
16497         (theora_dec_sink_convert), (theora_dec_src_query),
16498         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain),
16499         (theora_dec_change_state):
16500         Don't crash on missing header packets.
16501
16502 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16503
16504         * po/LINGUAS:
16505         * po/sq.po:
16506           Added Albanian translation (Laurent Dhima)
16507         * po/cs.po:
16508           updated
16509
16510 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16511
16512         * ext/lame/gstlame.c:
16513           fix/add debugging
16514
16515 2004-08-09  Thomas Vander Stichele  <thomas at apestaart dot org>
16516
16517         * sys/ximage/ximagesink.c:
16518         * sys/xvimage/xvimagesink.c:
16519           assign all TOO_LAZY's to a real category.  Thanks to Warthy Warthog.
16520
16521 2004-08-06  Wim Taymans  <wim@fluendo.com>
16522
16523         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16524         (gst_multifdsink_add), (gst_multifdsink_get_stats),
16525         (gst_multifdsink_client_remove),
16526         (gst_multifdsink_handle_client_read),
16527         (gst_multifdsink_handle_client_write),
16528         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
16529         Make sure we don't try to read more from a client that what
16530         ioctl says us or we deadlock.
16531
16532 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16533
16534         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_src_link),
16535         (gst_videotestsrc_change_state), (gst_videotestsrc_src_query),
16536         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
16537           decouple running_time and n_frames so it can handle changing
16538           framerate while running
16539
16540 2004-08-05  Thomas Vander Stichele  <thomas at apestaart dot org>
16541
16542         * po/nl.po:
16543         * po/sv.po:
16544           updated translations
16545
16546 2004-08-04  Benjamin Otte  <otte@gnome.org>
16547
16548         * gst/videotestsrc/gstvideotestsrc.c:
16549         (gst_videotestsrc_get_capslist), (generate_capslist),
16550         (plugin_init):
16551           generate the list of supported caps at startup and reuse it instead
16552           of always generating it
16553
16554 2004-07-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16555
16556         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link):
16557           whoops, last checkin broke normal build
16558
16559 2004-08-03  Benjamin Otte  <otte@gnome.org>
16560
16561         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_get_volume),
16562         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
16563         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
16564         (gst_alsa_mixer_get_option):
16565         * ext/dvdnav/dvdnavsrc.c: (dvdnav_get_event_name),
16566         (dvdnavsrc_print_event):
16567         * ext/ogg/gstoggdemux.c: (_find_chain_process), (gst_ogg_print):
16568         * ext/ogg/gstoggmux.c: (gst_ogg_mux_pad_link),
16569         (gst_ogg_mux_pad_unlink):
16570         * gst/multipart/multipartmux.c: (gst_multipart_mux_pad_link),
16571         (gst_multipart_mux_pad_unlink):
16572         * gst/videofilter/gstvideobalance.c:
16573         (gst_videobalance_colorbalance_set_value):
16574         * gst/videomixer/videomixer.c: (gst_videomixer_pad_link),
16575         (gst_videomixer_pad_unlink):
16576         * po/uk.po:
16577         * sys/oss/gstossmixer.c:
16578         * sys/v4l/gstv4lcolorbalance.c:
16579         * sys/v4l/gstv4ltuner.c:
16580         * sys/v4l/v4lsrc_calls.c:
16581         * sys/v4l2/gstv4l2colorbalance.c:
16582         * sys/v4l2/gstv4l2tuner.c:
16583           compile fixes for --disable-gst-debug, G_DISABLE_ASSERT and friends
16584
16585 2004-08-03  Benjamin Otte  <otte@gnome.org>
16586
16587         * examples/dynparams/filter.c: (ui_control_create):
16588         * examples/gstplay/player.c: (print_tag):
16589         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad):
16590         * ext/gdk_pixbuf/gstgdkanimation.c:
16591         (gst_gdk_animation_iter_may_advance):
16592         * ext/jack/gstjack.c: (gst_jack_request_new_pad):
16593         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
16594         (tag_list_to_id3_tag_foreach), (gst_id3_tag_handle_event):
16595         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_tag_value):
16596         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value):
16597         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
16598         * gst-libs/gst/media-info/media-info-test.c: (print_tag):
16599         * gst/sine/demo-dparams.c: (main):
16600         * gst/tags/gstvorbistag.c: (gst_tag_to_vorbis_comments):
16601         * testsuite/alsa/formats.c: (create_pipeline):
16602         * testsuite/alsa/sinesrc.c: (sinesrc_force_caps), (sinesrc_get):
16603           fixes for G_DISABLE_ASSERT and friends
16604         * gst/typefind/gsttypefindfunctions.c: (aac_type_find),
16605         (mp3_type_frame_length_from_header), (mp3_type_find),
16606         (plugin_init):
16607           require mp3 typefinding to have at least MIN_HEADERS valid headers
16608           add typefinding for AAC adts files
16609
16610 2004-08-04  Jan Schmidt  <thaytan@mad.scientist.com>
16611
16612         * sys/ximage/ximagesink.c:
16613         (gst_ximagesink_calculate_pixel_aspect_ratio):
16614         * sys/xvimage/xvimagesink.c:
16615         (gst_xvimagesink_calculate_pixel_aspect_ratio):
16616         Make sure we calculate pixel-aspect-ratio using floating point maths
16617
16618 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16619
16620         * po/uk.po:
16621           updated translation
16622
16623 2004-08-03  Thomas Vander Stichele  <thomas at apestaart dot org>
16624
16625         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
16626         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get):
16627           add debugging for display PAR calculation
16628
16629 2004-08-02  David Schleef  <ds@schleef.org>
16630
16631         * configure.ac: Fix mikmod CFLAGS.
16632
16633 2004-07-27  Benjamin Otte  <otte@gnome.org>
16634
16635         * gst/audioscale/gstaudioscale.c:
16636         - fix templates to only support S16, it's the only format that works
16637         - make caps nego code use try_set_caps_nonfixed and fixation instead
16638         of try_set_caps twice, which is not nice for autopluggers
16639         - change rank to secondary, so autopluggers can pick it up after
16640         audioconvert
16641
16642 2004-08-02  Iain <iain@prettypeople.org>
16643
16644         * gst/interleave/interleave.c (interleave_init),
16645         (interleave_request_new_pad),
16646         (interleave_pad_removed),
16647         (interleave_buffered_loop): Use the real pad count, not the artificial
16648         one.
16649
16650 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16651
16652         * configure.ac: bump nano back to development
16653
16654 === release 0.8.3 ===
16655
16656 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16657
16658         * configure.ac: releasing 0.8.3, "Water"
16659
16660 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16661
16662         * sys/xvimage/xvimagesink.c:
16663         (gst_xvimagesink_calculate_pixel_aspect_ratio),
16664         (gst_xvimagesink_xcontext_clear), (gst_xvimagesink_sink_link),
16665         (gst_xvimagesink_change_state), (gst_xvimagesink_buffer_alloc),
16666         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
16667         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16668         * sys/xvimage/xvimagesink.h:
16669           apply similar PAR fixes as to ximagesink
16670
16671 2004-08-02  Thomas Vander Stichele  <thomas at apestaart dot org>
16672
16673         patch from: Benjamin Otte
16674
16675         * ext/lame/gstlame.c: (gst_lame_src_link), (gst_lame_init):
16676           add link function to lame.  Fixes #148986.
16677
16678 2004-08-02  Johan Dahlin  <johan@gnome.org>
16679
16680         * gst/multipart/multipartmux.c (gst_multipart_mux_next_buffer):
16681         fix debugging log
16682
16683 2004-07-30  David Schleef  <ds@schleef.org>
16684
16685         * gst/videomixer/Makefile.am: Fix things that should have been
16686         fixed in the last checkin.
16687
16688 2004-07-30  David Schleef  <ds@schleef.org>
16689
16690         * gst/multipart/Makefile.am: Fix things that should have been
16691         fixed in the last checkin.
16692
16693 2004-07-30  David Schleef  <ds@schleef.org>
16694
16695         * testsuite/multifilesink/Makefile.am: Fix unused variable.
16696
16697 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16698
16699         * configure.ac:
16700           bump nano for prerelease
16701         * po/af.po:
16702         * po/az.po:
16703         * po/cs.po:
16704         * po/en_GB.po:
16705         * po/hu.po:
16706         * po/nl.po:
16707         * po/sr.po:
16708         * po/sv.po:
16709         * po/uk.po:
16710           updates
16711
16712 2004-07-30  Wim Taymans  <wim@fluendo.com>
16713
16714         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
16715         (gst_multifdsink_add), (gst_multifdsink_remove),
16716         (gst_multifdsink_clear), (gst_multifdsink_get_stats),
16717         (gst_multifdsink_client_remove),
16718         (gst_multifdsink_handle_client_write),
16719         (gst_multifdsink_queue_buffer), (gst_multifdsink_handle_clients):
16720         * gst/tcp/gstmultifdsink.h:
16721         Recover from a select with a bad file descriptor by removing
16722         the client.
16723
16724 2004-07-30  Thomas Vander Stichele  <thomas at apestaart dot org>
16725
16726         * configure.ac:
16727           fix requirement of core
16728         * gst-libs/gst/play/play.c: (gst_play_error_plugin),
16729         (gst_play_pipeline_setup):
16730           don't use colorspace element.  do use hermescolorspace element.
16731           make macro to get a colorspace element.
16732           mark strings for translation.
16733         * po/POTFILES.in:
16734           add play.c
16735         * po/af.po:
16736         * po/az.po:
16737         * po/cs.po:
16738         * po/en_GB.po:
16739         * po/hu.po:
16740         * po/nl.po:
16741         * po/sr.po:
16742         * po/sv.po:
16743         * po/uk.po:
16744           update translations
16745
16746 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16747
16748         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init):
16749         fix default for newmedia flag
16750
16751 2004-07-30  Wim Taymans  <wim@fluendo.com>
16752
16753         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
16754         (gst_theora_dec_init), (theora_get_formats),
16755         (theora_dec_src_convert), (theora_dec_sink_convert),
16756         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
16757         (theora_dec_chain), (theora_dec_set_property),
16758         (theora_dec_get_property):
16759         * ext/theora/theoraenc.c: (gst_border_mode_get_type),
16760         (gst_theora_enc_class_init), (gst_theora_enc_init),
16761         (theora_enc_sink_link), (theora_enc_chain),
16762         (theora_enc_set_property), (theora_enc_get_property):
16763         Added cropping option to theora decoder.
16764         Added border option to theora encoder.
16765
16766 2004-07-30  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16767
16768         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
16769         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
16770         (gst_pngenc_set_property):
16771         * ext/libpng/gstpngenc.h:
16772         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
16773
16774 2004-07-30  Wim Taymans  <wim@fluendo.com>
16775
16776         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
16777         (theora_enc_sink_link), (theora_enc_chain),
16778         (theora_enc_set_property), (theora_enc_get_property):
16779         Fix encoding of non-multiple-of-16 video.
16780
16781 2004-07-29  David Schleef  <ds@schleef.org>
16782
16783         * configure.ac: make test for audiofile more strict
16784
16785 2004-07-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
16786
16787         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
16788           give different names to typefind functions
16789
16790 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16791
16792         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
16793         (gst_ximagesink_calculate_pixel_aspect_ratio),
16794         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
16795         (gst_ximagesink_sink_link), (gst_ximagesink_change_state),
16796         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_set_property),
16797         (gst_ximagesink_get_property), (gst_ximagesink_init):
16798         * sys/ximage/ximagesink.h:
16799           allocate PAR's dynamically.
16800           use autodetected PAR if no object-set PAR is given.
16801           add workaround for directfb's X not setting physical size.
16802           fix to xvimagesink will follow tomorrow.
16803
16804 2004-07-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16805
16806         * ext/lame/gstlame.c: (gst_lame_chain): send tag events downstream
16807         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
16808         (gst_shout2send_get_type), (gst_shout2send_set_clock),
16809         (gst_shout2send_class_init), (gst_shout2send_init),
16810         (set_shout_metadata), (gst_shout2send_set_metadata),
16811         (gst_shout2send_chain), (gst_shout2send_set_property),
16812         (gst_shout2send_get_property), (gst_shout2send_connect),
16813         (gst_shout2send_change_state):
16814         * ext/shout2/gstshout2.h:
16815         - fix for sending mp3 audio to icecast2 server, if pad link function not
16816         called before PAUSED state
16817         - added option to use GStreamer clock sync (as opposed to libshout's own sync)
16818         - added tagging support for mp3 audio broadcasted
16819         * gst/monoscope/gstmonoscope.c: (gst_monoscope_class_init):
16820         debug info
16821
16822 2004-07-28  Wim Taymans  <wim@fluendo.com>
16823
16824         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query),
16825         (gst_ogg_demux_push):
16826         Return query failure when we don't know the length of
16827         an ogg stream insteda of returning TRUE with a bogus value.
16828
16829 2004-07-28  Wim Taymans  <wim@fluendo.com>
16830
16831         * ext/theora/theoradec.c: (theora_get_formats),
16832         (theora_dec_src_convert), (theora_dec_sink_convert),
16833         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
16834         (theora_dec_chain):
16835         Don't screw up the 1 Chroma for 1 luma sample situation when we
16836         have an odd offset/width by adding a black border in those cases.
16837
16838 2004-07-28  Wim Taymans  <wim@fluendo.com>
16839
16840         * ext/theora/theoradec.c: (theora_get_formats),
16841         (theora_dec_src_convert), (theora_dec_sink_convert),
16842         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
16843         (theora_dec_chain):
16844         * ext/theora/theoraenc.c: (theora_enc_sink_link):
16845         Added first attempt at cropping of the image as required by the
16846         theora spec. We need more properties in the caps (offset_x,
16847         offset_y,stride) to implement this correctly.
16848
16849 2004-07-28  Jan Schmidt  <thaytan@mad.scientist.com>
16850
16851         * ext/dvdnav/README:
16852           Update the README to use dvddemux
16853         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_getcaps):
16854           Ensure getcaps returns a subset of the template caps
16855         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_base_init),
16856         (gst_mpeg2subt_init):
16857           Ensure getcaps returns a subset of the template caps
16858         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init),
16859         (gst_dvd_demux_init), (gst_dvd_demux_get_video_stream),
16860         (gst_dvd_demux_get_subpicture_stream),
16861         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_set_cur_subpicture):
16862         * gst/mpegstream/gstdvddemux.h:
16863           Set the explicit caps on the current_video pad before pushing
16864           anything
16865         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
16866         (gst_mpeg_demux_get_audio_stream):
16867           Free caps used to gst_pad_set_explicit_caps, which takes a const
16868           GstCaps *
16869
16870 2004-07-28  Thomas Vander Stichele  <thomas at apestaart dot org>
16871
16872         * configure.ac: update GStreamer requirement to 0.8.4 because of
16873           GstFraction.
16874
16875 2004-07-28  Wim Taymans  <wim@fluendo.com>
16876
16877         * gst/wavparse/gstwavparse.c: (gst_wavparse_fmt),
16878         (gst_wavparse_handle_seek), (gst_wavparse_srcpad_event):
16879         Add the pad to the element after setting up the caps. This
16880         makes it a lot easier to autoplug.
16881
16882 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
16883
16884         * gst/median/gstmedian.c:
16885         * gst/mpeg2subt/gstmpeg2subt.c:
16886         * gst/mpegaudioparse/gstmpegaudioparse.c:
16887         * gst/mpegstream/gstdvddemux.c:
16888         * gst/mpegstream/gstmpegdemux.c:
16889         * gst/mpegstream/gstmpegpacketize.c:
16890         * gst/rtjpeg/gstrtjpeg.c:
16891         * gst/rtjpeg/gstrtjpegdec.c:
16892         * gst/rtjpeg/gstrtjpegenc.c:
16893         * gst/sine/gstsinesrc.c:
16894         * gst/smooth/gstsmooth.c:
16895         * gst/smpte/gstsmpte.c:
16896         * gst/smpte/gstsmpte.h:
16897         * gst/stereo/gststereo.c:
16898         * gst/videofilter/gstgamma.c:
16899         * gst/videofilter/gstvideobalance.c:
16900         * gst/videofilter/gstvideofilter.c:
16901         * gst/videofilter/gstvideoflip.c:
16902         * gst/videoscale/gstvideoscale.c:
16903         * gst/videoscale/videoscale.c:
16904         * gst/videotestsrc/gstvideotestsrc.c:
16905         * gst/videotestsrc/videotestsrc.c:
16906         * gst/wavenc/gstwavenc.c:
16907         * gst/wavparse/gstwavparse.c:
16908           fix local includes and 64 bits constants
16909
16910 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
16911
16912         * win32/gst.sln:
16913         * gst-libs/gst/*/*.vcproj:
16914         * gst/*/*.vcproj:
16915           more working plugins
16916
16917 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16918
16919         * testsuite/alsa/Makefile.am:
16920         * testsuite/alsa/srcstate.c:
16921         add test for alsasrc changing state
16922
16923 2004-07-27  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
16924
16925         * gst/silence/gstsilence.c: (gst_silence_init), (gst_silence_link),
16926         (gst_silence_get):
16927         * gst/silence/gstsilence.h:
16928         fix silence generation for 16bit raw audio
16929
16930 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16931
16932         * gst/matroska/matroska-demux.c:
16933         (gst_matroska_demux_parse_metadata),
16934         (gst_matroska_demux_video_caps), (gst_matroska_demux_plugin_init):
16935         * gst/mpegaudio/common.c:
16936         * gst/videoscale/gstvideoscale.c: (gst_videoscale_class_init),
16937         (gst_videoscale_getcaps), (gst_videoscale_link),
16938         (gst_videoscale_src_fixate), (gst_videoscale_init),
16939         (gst_videoscale_finalize):
16940         * gst/videoscale/gstvideoscale.h:
16941         * gst/videotestsrc/gstvideotestsrc.c:
16942         (gst_videotestsrc_get_capslist):
16943         * gst/wavenc/gstwavenc.c:
16944         * sys/oss/gstossmixer.c: (fill_labels):
16945         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
16946         (gst_ximagesink_handle_xevents),
16947         (gst_ximagesink_calculate_pixel_aspect_ratio),
16948         (gst_ximagesink_xcontext_get), (gst_ximagesink_fixate),
16949         (gst_ximagesink_getcaps), (gst_ximagesink_sink_link),
16950         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id),
16951         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
16952         (gst_ximagesink_init), (gst_ximagesink_class_init):
16953         * sys/ximage/ximagesink.h:
16954         * sys/xvimage/xvimagesink.c:
16955         (gst_xvimagesink_calculate_pixel_aspect_ratio),
16956         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_sink_link),
16957         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
16958         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
16959         (gst_xvimagesink_init), (gst_xvimagesink_class_init):
16960         * sys/xvimage/xvimagesink.h:
16961           first batch of pixel aspect ratio commits.
16962
16963 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16964
16965         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
16966         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_chain):
16967         * gst/ffmpegcolorspace/imgconvert.c: (avpicture_fill):
16968           handle stride, needs work if we want to move stride handling
16969           upstream, but works correctly for our purposes.
16970
16971 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16972
16973         * gst/videoscale/README:
16974           add testing examples
16975         * gst/videoscale/gstvideoscale.c: (gst_videoscale_link),
16976         (gst_videoscale_chain):
16977         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
16978         (gst_videoscale_get_size):
16979           add get_size function that handles stride like videotestsrc.
16980           fixes conversion for YUV formats for as much as I can test them.
16981
16982 2004-07-27  Thomas Vander Stichele  <thomas at apestaart dot org>
16983
16984         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
16985         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy):
16986         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
16987         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
16988         (gst_xvimagesink_xvimage_put):
16989           further cleanups, logging, error handling and synchronizing
16990
16991 2004-07-27  Wim Taymans  <wim@fluendo.com>
16992
16993         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
16994         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
16995         (gst_videomixer_pad_set_property),
16996         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
16997         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
16998         (gst_videomixer_class_init), (gst_videomixer_init),
16999         (gst_videomixer_getcaps), (gst_videomixer_request_new_pad),
17000         (gst_videomixer_blend_ayuv_i420), (pad_zorder_compare),
17001         (gst_videomixer_sort_pads), (gst_videomixer_fill_checker),
17002         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
17003         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
17004         (gst_videomixer_loop), (plugin_init):
17005         Be a nicer negotiation citizen and provide a getcaps function on
17006         the srcpad. This also fixes a crash when resizing.
17007
17008 2004-07-27  Julien MOUTTE  <julien@moutte.net>
17009
17010         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
17011         (gst_xvimagesink_xvimage_new): Some fixes to image size calculation.
17012
17013 2004-07-27  Wim Taymans  <wim@fluendo.com>
17014
17015         * ext/libpng/gstpngdec.c: (gst_pngdec_src_getcaps):
17016         * ext/libpng/gstpngenc.c: (gst_pngenc_class_init),
17017         (gst_pngenc_init), (gst_pngenc_chain), (gst_pngenc_get_property),
17018         (gst_pngenc_set_property):
17019         * ext/libpng/gstpngenc.h:
17020         Added snapshot property to pngenc.
17021         removed g_print from pngdec
17022
17023 2004-07-27  Steve Lhomme  <steve.lhomme@free.fr>
17024
17025         * gst/ac3parse/ac3parse.vcproj
17026         * gst/adder/adder.vcproj
17027         * gst/alpha/alpha.vcproj
17028         * gst/alpha/alphacolor.vcproj
17029         * gst/asfdemux/asf.vcproj
17030         * gst/audioconvert/audioconvert.vcproj
17031         * gst/audiorate/audiorate.vcproj
17032         * gst/audioscale/audioscale.vcproj
17033         * gst/auparse/auparse.vcproj
17034         * gst/avi/avi.vcproj
17035         * gst/cdxaparse/cdxaparse.vcproj
17036         * gst/chart/chart.vcproj
17037         * gst/colorspace/colorspace.vcproj
17038         * gst/cutter/cutter.vcproj
17039         * gst/debug/debug.vcproj
17040         * gst/debug/efence.vcproj
17041         * gst/debug/navigationtest.vcproj
17042         * gst/deinterlace/deinterlace.vcproj
17043         * gst/effectv/effectv.vcproj
17044         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
17045         * gst/filter/filter.vcproj
17046         * gst/flx/flxdec.vcproj
17047         * gst/goom/goom.vcproj
17048         * gst/interleave/interleave.vcproj
17049         * gst/law/alaw.vcproj
17050         * gst/law/mulaw.vcproj
17051         * gst/matroska/matroska.vcproj
17052         * gst/median/median.vcproj
17053         * gst/mixmatrix/mixmatrix.vcproj
17054         * gst/mpeg1sys/mpeg1systemencode.vcproj
17055         * gst/mpeg1videoparse/mp1videoparse.vcproj
17056         * gst/mpeg2sub/mpeg2subt.vcproj
17057         * gst/mpegaudio/mpegaudio.vcproj
17058         * gst/mpegaudioparse/mpegaudioparse.vcproj
17059         * gst/mpegstream/mpegstream.vcproj
17060         * gst/multifilesink/multifilesink.vcproj
17061         * gst/multipart/multipart.vcproj
17062         * gst/oneton/oneton.vcproj
17063         * gst/overlay/overlay.vcproj
17064         * gst/passthrough/passthrough.vcproj
17065         * gst/qtdemux/qtdemux.vcproj
17066         * gst/realmedia/rmdemux.vcproj
17067         * gst/rtjpeg/rtjpeg.vcproj
17068         * gst/rtp/rtp.vcproj
17069         * gst/silence/silence.vcproj
17070         * gst/sine/sinesrc.vcproj
17071         * gst/smooth/smooth.vcproj
17072         * gst/smpte/smpte.vcproj
17073         * gst/spectrum/spectrum.vcproj
17074         * gst/speed/speed.vcproj
17075         * gst/stereo/stereo.vcproj
17076         * gst/switch/switch.vcproj
17077         * gst/tags/tagedit.vcproj
17078         * gst/tcp/tcp.vcproj
17079         * gst/typefind/typefindfunctions.vcproj
17080         * gst/udp/udp.vcproj
17081         * gst/videobox/videobox.vcproj
17082         * gst/videocrop/videocrop.vcproj
17083         * gst/videodrop/videodrop.vcproj
17084         * gst/videofilter/gamma.vcproj
17085         * gst/videofilter/videobalance.vcproj
17086         * gst/videofilter/videofilter.vcproj
17087         * gst/videofilter/videoflip.vcproj
17088         * gst/videoflip/videoflip.vcproj
17089         * gst/videomixer/videomixer.vcproj
17090         * gst/videorate/videorate.vcproj
17091         * gst/videoscale/videoscale.vcproj
17092         * gst/videotestsrc/videotestsrc.vcproj
17093         * gst/virtualdub/virtualdub.vcproj
17094         * gst/volenv/volenv.vcproj
17095         * gst/volume/volume.vcproj
17096         * gst/wavenc/wavenc.vcproj
17097         * gst/wavparse/wavparse.vcproj
17098         * gst/y4m/y4menc.vcproj
17099         * gst-libs/gst/audio/audio.vcproj
17100         * gst-libs/gst/audio/audiofilter.vcproj
17101         * gst-libs/gst/colorbalance/colorbalance.vcproj
17102         * gst-libs/gst/idct/idtc.vcproj
17103         * gst-libs/gst/media-info/media-info.vcproj
17104         * gst-libs/gst/mixer/mixer.vcproj
17105         * gst-libs/gst/navigation/navigation.vcproj
17106         * gst-libs/gst/play/play.vcproj
17107         * gst-libs/gst/propertyprobe/propertyprobe.vcproj
17108         * gst-libs/gst/resample/resample.vcproj
17109         * gst-libs/gst/riff/riff.vcproj
17110         * gst-libs/gst/tuner/tuner.vcproj
17111         * gst-libs/gst/video/video.vcproj
17112         * gst-libs/gst/xoverlay/xoverlay.vcproj
17113           avoid problems with math.h, fix release dependancy
17114           rename GStreamer-0.8.lib to libgstreamer.lib
17115
17116 2004-07-27  Julien MOUTTE  <julien@moutte.net>
17117
17118         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
17119         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate): When
17120         the atom is not available we have to unlock the mutex. Fixes #148023
17121
17122 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17123
17124         * gst-libs/gst/media-info/media-info.h:
17125           issue for a vararg macro with MSVC
17126
17127 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17128
17129         * gst/effectv/effectv.vcproj
17130         * gst-libs/gst/idct/idct.vcproj:
17131         * gst-libs/gst/media-info/media-info.vcproj:
17132         * gst-libs/gst/navigation/navigation.vcproj:
17133         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
17134         * gst-libs/gst/video/video.vcproj:
17135         * gst-libs/gst/xoverlay/xoverlay.vcproj:
17136           fixes for build problems
17137
17138 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17139
17140         * gst-libs/gst/audio/audio.def:
17141         * gst-libs/gst/audio/riff.def:
17142           add some definitions needed by plugins
17143
17144 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17145
17146         * gst/asfdemux/gstasfmux.c
17147           Fix some 64 bits constants to be glib friendly
17148
17149 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17150
17151         * gst/ac3parse/gstac3parse.c
17152         * gst/audioscale/gstaudioscale.c
17153         * gst/auparse/gstauparse.c
17154         * gst/colorspace/gstcolorspace.c
17155         * gst/colorspace/yuv2rgb.h
17156           local include fixes
17157
17158 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17159
17160         * win32/gst.sln
17161           add more plugins to the build
17162
17163 2004-07-26  Julien MOUTTE  <julien@moutte.net>
17164
17165         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
17166         (gst_ximagesink_ximage_new): Some more fixes to image size calculation.
17167
17168 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17169
17170         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
17171         (gst_level_set_property), (gst_level_get_property),
17172         (gst_level_base_init), (gst_level_class_init):
17173           add debugging categories.  cleanups.
17174
17175 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17176
17177         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
17178         (gst_videoscale_planar411), (gst_videoscale_planar400),
17179         (gst_videoscale_packed422), (gst_videoscale_packed422rev),
17180         (gst_videoscale_scale_nearest_str1),
17181         (gst_videoscale_scale_nearest_str2),
17182         (gst_videoscale_scale_nearest_str4),
17183         (gst_videoscale_scale_nearest_16bit),
17184         (gst_videoscale_scale_nearest_24bit):
17185           fixed stride issues
17186           tested with 320x240 -> 321, 322, 324 x240
17187           tested with YV12, I420, YUY2, UYVY
17188           fixed packed422rev (don't think it could have worked before)
17189           by testing with UYVY
17190
17191 2004-07-26  Benjamin Otte  <otte@gnome.org>
17192
17193         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_init),
17194         (gst_lame_chain), (gst_lame_setup), (gst_lame_change_state),
17195         (plugin_init):
17196           add debugging category, add error checks like checking return values
17197           of setup calls, make sure it still works after
17198           PLAYING=>NULL=>PLAYING, fix encoding of mono streams
17199
17200 2004-07-26  Wim Taymans  <wim@fluendo.com>
17201
17202         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
17203         (gst_mpeg_demux_get_audio_stream),
17204         (gst_mpeg_demux_process_private):
17205         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_data):
17206         Check for error codes from the negotiation functions. Make sure
17207         we really set the pad caps when a new pad is created.
17208
17209 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17210
17211         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
17212         (gst_ffmpeg_caps_to_pix_fmt):
17213         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
17214         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17215         (gst_ffmpegcolorspace_pad_link):
17216           don't make function do two things at the same time without reason.
17217
17218 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17219
17220         * gst/ac3parse/ac3parse.vcproj
17221         * gst/adder/adder.vcproj
17222         * gst/alpha/alpha.vcproj
17223         * gst/alpha/alphacolor.vcproj
17224         * gst/asfdemux/asf.vcproj
17225         * gst/audioconvert/audioconvert.vcproj
17226         * gst/audiorate/audiorate.vcproj
17227         * gst/audioscale/audioscale.vcproj
17228         * gst/auparse/auparse.vcproj
17229         * gst/avi/avi.vcproj
17230         * gst/cdxaparse/cdxaparse.vcproj
17231         * gst/chart/chart.vcproj
17232         * gst/colorspace/colorspace.vcproj
17233         * gst/cutter/cutter.vcproj
17234         * gst/debug/debug.vcproj
17235         * gst/debug/efence.vcproj
17236         * gst/debug/navigationtest.vcproj
17237         * gst/deinterlace/deinterlace.vcproj
17238         * gst/effectv/effectv.vcproj
17239         * gst/ffmpegcolorspace/ffmpegcolorspace.vcproj
17240         * gst/filter/filter.vcproj
17241         * gst/flx/flxdec.vcproj
17242         * gst/goom/goom.vcproj
17243         * gst/interleave/interleave.vcproj
17244         * gst/law/alaw.vcproj
17245         * gst/law/mulaw.vcproj
17246         * gst/matroska/matroska.vcproj
17247         * gst/median/median.vcproj
17248         * gst/mixmatrix/mixmatrix.vcproj
17249         * gst/mpeg1sys/mpeg1systemencode.vcproj
17250         * gst/mpeg1videoparse/mp1videoparse.vcproj
17251         * gst/mpeg2sub/mpeg2subt.vcproj
17252         * gst/mpegaudio/mpegaudio.vcproj
17253         * gst/mpegaudioparse/mpegaudioparse.vcproj
17254         * gst/mpegstream/mpegstream.vcproj
17255         * gst/multifilesink/multifilesink.vcproj
17256         * gst/multipart/multipart.vcproj
17257         * gst/oneton/oneton.vcproj
17258         * gst/overlay/overlay.vcproj
17259         * gst/passthrough/passthrough.vcproj
17260         * gst/qtdemux/qtdemux.vcproj
17261         * gst/realmedia/rmdemux.vcproj
17262         * gst/rtjpeg/rtjpeg.vcproj
17263         * gst/rtp/rtp.vcproj
17264         * gst/silence/silence.vcproj
17265         * gst/sine/sinesrc.vcproj
17266         * gst/smooth/smooth.vcproj
17267         * gst/smpte/smpte.vcproj
17268         * gst/spectrum/spectrum.vcproj
17269         * gst/speed/speed.vcproj
17270         * gst/stereo/stereo.vcproj
17271         * gst/switch/switch.vcproj
17272         * gst/tags/tagedit.vcproj
17273         * gst/tcp/tcp.vcproj
17274         * gst/typefind/typefindfunctions.vcproj
17275         * gst/udp/udp.vcproj
17276         * gst/videobox/videobox.vcproj
17277         * gst/videocrop/videocrop.vcproj
17278         * gst/videodrop/videodrop.vcproj
17279         * gst/videofilter/gamma.vcproj
17280         * gst/videofilter/videobalance.vcproj
17281         * gst/videofilter/videofilter.vcproj
17282         * gst/videofilter/videoflip.vcproj
17283         * gst/videoflip/videoflip.vcproj
17284         * gst/videomixer/videomixer.vcproj
17285         * gst/videorate/videorate.vcproj
17286         * gst/videoscale/videoscale.vcproj
17287         * gst/videotestsrc/videotestsrc.vcproj
17288         * gst/virtualdub/virtualdub.vcproj
17289         * gst/volenv/volenv.vcproj
17290         * gst/volume/volume.vcproj
17291         * gst/wavenc/wavenc.vcproj
17292         * gst/wavparse/wavparse.vcproj
17293         * gst/y4m/y4menc.vcproj
17294           more plugins supported under windows
17295
17296 2004-07-26  Thomas Vander Stichele  <thomas at apestaart dot org>
17297
17298         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
17299         (gst_ximagesink_ximage_put), (gst_ximagesink_renegotiate_size),
17300         (gst_ximagesink_chain), (gst_ximagesink_buffer_alloc):
17301         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17302         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc):
17303           Add debugging statements.  Use the sizes as returned by the
17304           *CreateImage calls.
17305
17306 2004-07-26  Johan Dahlin  <johan@gnome.org>
17307
17308         * gst/tcp/gsttcpclientsrc.c (gst_tcpclientsrc_get): Make sure that
17309         the pad is negotiated.
17310
17311         * gst/ffmpegcolorspace/gstffmpegcolorspace.c (gst_ffmpegcolorspace_chain): Ditto
17312
17313 2004-07-26  Steve Lhomme  <steve.lhomme@free.fr>
17314
17315         * gst-libs/gst/colorbalance/colorbalance.vcproj:
17316         * gst-libs/gst/idct/idct.vcproj:
17317         * gst-libs/gst/media-info/media-info.vcproj:
17318         * gst-libs/gst/mixer/mixer.vcproj:
17319         * gst-libs/gst/navigation/navigation.vcproj:
17320         * gst-libs/gst/play/play.vcproj:
17321         * gst-libs/gst/propertyprobe/propertyprobe.vcproj:
17322         * gst-libs/gst/resample/resample.vcproj:
17323         * gst-libs/gst/tuner/tuner.vcproj:
17324         * gst-libs/gst/video/video.vcproj:
17325         * gst-libs/gst/xoverlay/xoverlay.vcproj:
17326           more plugins supported under windows
17327
17328 2004-07-25 Iain <iain@prettypeople.org>
17329
17330         * gst/wavparse/gstwavparse.c (gst_wavparse_fmt): Set the caps on the
17331         pad now rather than when the pad is created because state changes wipe
17332         explicit caps (fixes #148043).
17333
17334 2004-07-25  Sebastien Cote  <sc5@hermes.usherb.ca>
17335
17336         reviewed by Benjamin Otte  <otte@gnome.org>
17337
17338         * ext/mad/gstmad.c:
17339           fix mad plugin crashing on Sun (fixes #148289)
17340
17341 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
17342
17343         * gst/avi/avi.def:
17344         * gst/avi/avi.vcproj:
17345         * gst/matroska/matroska.def:
17346         * gst/matroska/matroska.vcproj:
17347           remove unused .def files
17348
17349 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
17350
17351         * gst-libs/gst/audio/gstaudiofilter.c:
17352           Clean the local include
17353
17354 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
17355
17356         * win32/gst.sln:
17357         * gst-libs/gst/audio/audio.def:
17358         * gst-libs/gst/audio/audio.vcproj:
17359         * gst-libs/gst/audio/audiofilter.vcproj:
17360         * gst-libs/gst/audio/riff.def:
17361         * gst-libs/gst/audio/riff.vcproj:
17362         * gst-libs/gst/gst-libs.def:
17363         * gst-libs/gst/gst-libs.vcproj:
17364         * gst/avi/avi.vcproj:
17365         * gst/avi/avi.vcproj:
17366           Copy the files where needed after building, cleaner projects
17367
17368 2004-07-25  Steve Lhomme  <steve.lhomme@free.fr>
17369
17370         * gst/matroska/ebml-write.c:
17371           Fix some 64 bits constants to be glib friendly
17372
17373 2004-07-24  Steve Lhomme  <steve.lhomme@free.fr>
17374
17375         * win32/gst.sln:
17376         * gst-libs/gst/gst-libs.def:
17377         * gst-libs/gst/gst-libs.vcproj:
17378         * gst/matroska/matroska.def:
17379         * gst/matroska/matroska.vcproj:
17380           Add the preliminary canvas to build plugins on Win32
17381
17382 2004-07-23  Benjamin Otte  <otte@gnome.org>
17383
17384         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
17385           don't enfore negotiation from source side, it breaks
17386           sinesrc ! audioconvert ! osssink
17387
17388 2004-07-22  David Schleef  <ds@schleef.org>
17389
17390         * gst/typefind/gsttypefindfunctions.c: (plugin_init): Add typefind
17391         for ELF files, since they can easily be recognized as audio/mpeg.
17392         (bug #147441)
17393
17394 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17395
17396         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
17397         (gst_videoscale_planar411), (gst_videoscale_scale_nearest_32bit),
17398         (gst_videoscale_scale_nearest_24bit),
17399         (gst_videoscale_scale_nearest_16bit):
17400           fix 16bit and 24bit for stride (24bit might need testing)
17401           don't pretend we do more than one algorithm
17402
17403 2004-07-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
17404
17405         * configure.ac:
17406         * gst/Makefile.am:
17407         * gst/multifilesink/Makefile.am:
17408         * gst/multifilesink/gstmultifilesink.c:
17409         (gst_multifilesink_get_formats),
17410         (gst_multifilesink_get_query_types), (_do_init),
17411         (gst_multifilesink_base_init), (gst_multifilesink_class_init),
17412         (gst_multifilesink_init), (gst_multifilesink_dispose),
17413         (gst_multifilesink_set_location), (gst_multifilesink_set_property),
17414         (gst_multifilesink_get_property), (gst_multifilesink_open_file),
17415         (gst_multifilesink_close_file), (gst_multifilesink_next_file),
17416         (gst_multifilesink_pad_query), (gst_multifilesink_handle_event),
17417         (gst_multifilesink_chain), (gst_multifilesink_change_state),
17418         (gst_multifilesink_uri_get_type),
17419         (gst_multifilesink_uri_get_protocols),
17420         (gst_multifilesink_uri_get_uri), (gst_multifilesink_uri_set_uri),
17421         (gst_multifilesink_uri_handler_init), (plugin_init):
17422         * gst/multifilesink/gstmultifilesink.h:
17423         * testsuite/Makefile.am:
17424         * testsuite/multifilesink/Makefile.am:
17425         * testsuite/multifilesink/fakesrc_test.c: (gst_newmedia_base_init),
17426         (gst_newmedia_class_init), (gst_newmedia_init),
17427         (gst_newmedia_chain), (gst_newmedia_trigger), (test_format),
17428         (newfile_signal), (test_signal), (main):
17429         multifilesink plugin for creating new files every time a new media
17430         discontinuity event occurs
17431
17432 2004-07-22  Wim Taymans  <wim@fluendo.com>
17433
17434         * gst/alpha/Makefile.am:
17435         * gst/alpha/gstalphacolor.c: (gst_alpha_color_get_type),
17436         (gst_alpha_color_base_init), (gst_alpha_color_class_init),
17437         (gst_alpha_color_init), (gst_alpha_color_set_property),
17438         (gst_alpha_color_get_property), (gst_alpha_color_sink_link),
17439         (transform), (gst_alpha_color_chain),
17440         (gst_alpha_color_change_state), (plugin_init):
17441         Stupid plugin to to RGBA to AYUV conversion because none of
17442         the colorspace plugins can handle that yet.
17443
17444 2004-07-22  Wim Taymans  <wim@fluendo.com>
17445
17446         * examples/seeking/seek.c: (update_scale), (main):
17447         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17448         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
17449         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
17450         (gst_decode_bin_init), (gst_decode_bin_dispose),
17451         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
17452         (no_more_pads), (close_link), (type_found),
17453         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
17454         (plugin_init):
17455         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
17456         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
17457         (gst_play_base_bin_dispose), (queue_overrun),
17458         (gen_preroll_element), (remove_prerolls), (unknown_type),
17459         (no_more_pads), (new_stream), (setup_source),
17460         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17461         (play_base_eos), (gst_play_base_bin_change_state),
17462         (gst_play_base_bin_add_element),
17463         (gst_play_base_bin_remove_element),
17464         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
17465         (gst_play_base_bin_unlink_stream),
17466         (gst_play_base_bin_get_streaminfo):
17467         * gst/playback/gstplaybin.c: (gen_video_element),
17468         (gen_audio_element):
17469         * gst/playback/gststreaminfo.h:
17470         More playback updates, attempt to fix things after the state change
17471         breakage.
17472
17473 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17474
17475         * gst/videoscale/videoscale.c: (gst_videoscale_planar411),
17476         (gst_videoscale_scale_nearest_16bit):
17477           comment algorithm
17478
17479 2004-07-22  Thomas Vander Stichele  <thomas at apestaart dot org>
17480
17481         * gst/videotestsrc/gstvideotestsrc.c:
17482         (gst_videotestsrc_class_init), (gst_videotestsrc_src_link),
17483         (gst_videotestsrc_init), (gst_videotestsrc_get),
17484         (gst_videotestsrc_set_pattern), (gst_videotestsrc_set_property),
17485         (gst_videotestsrc_get_property):
17486         * gst/videotestsrc/gstvideotestsrc.h:
17487         * gst/videotestsrc/videotestsrc.c:
17488         * gst/videotestsrc/videotestsrc.h:
17489           cleanup and commenting
17490
17491 2004-07-21  Wim Taymans  <wim@fluendo.com>
17492
17493         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init),
17494         (gst_ogg_demux_get_formats), (gst_ogg_demux_src_query),
17495         (gst_ogg_demux_src_event), (gst_ogg_demux_src_convert),
17496         (gst_ogg_demux_handle_event), (gst_ogg_demux_seek_before),
17497         (_find_chain_get_unknown_part), (_find_streams_check),
17498         (gst_ogg_demux_push), (gst_ogg_pad_push):
17499         * ext/theora/theoradec.c: (theora_get_formats),
17500         (theora_dec_src_convert), (theora_dec_sink_convert),
17501         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
17502         (theora_dec_chain):
17503         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
17504         (vorbis_dec_convert), (vorbis_dec_src_query),
17505         (vorbis_dec_src_event), (vorbis_dec_event):
17506         More seeking fixes, oggdemux now supports seeking to time and
17507         uses the downstream element to convert granulepos to time.
17508         Seeking in theora-only ogg files now works.
17509
17510 2004-07-21  Wim Taymans  <wim@fluendo.com>
17511
17512         * ext/theora/theoradec.c: (gst_theora_dec_init),
17513         (theora_get_formats), (theora_get_event_masks),
17514         (theora_get_query_types), (theora_dec_src_convert),
17515         (theora_dec_sink_convert), (theora_dec_src_query),
17516         (theora_dec_src_event), (theora_dec_event), (theora_dec_chain):
17517         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
17518         (vorbis_get_event_masks), (vorbis_get_query_types),
17519         (gst_vorbis_dec_init), (vorbis_dec_convert),
17520         (vorbis_dec_src_query), (vorbis_dec_src_event), (vorbis_dec_event):
17521         Added query/convert/formats functions to vorbis and theora decoders
17522         so that the outside world can use them too. Fixed seeking on an
17523         ogg/theora/vorbis file by disabling the seeking seeking on the
17524         theora srcpad.
17525
17526 2004-07-21  Julien MOUTTE  <julien@moutte.net>
17527
17528         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
17529         (gst_ximagesink_renegotiate_size), (gst_ximagesink_sink_link),
17530         (gst_ximagesink_chain), (gst_ximagesink_set_xwindow_id): Optimize
17531         images creation for both elements. We don't create the image on caps
17532         nego or renego, we just destroy the internal one if present if it does
17533         not match the needs. The chain function takes care of creating a new
17534         image when needed.
17535         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
17536         (gst_xvimagesink_xwindow_decorate), (gst_xvimagesink_sink_link),
17537         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_alloc),
17538         (gst_xvimagesink_set_xwindow_id): Additionally xvimage now contains
17539         the image format information. The buffer pool checks for the context
17540         image format and discard images with different formats.
17541         * sys/xvimage/xvimagesink.h: Adding im_format in the xvimage structure.
17542
17543 2004-07-21  Thomas Vander Stichele  <thomas at apestaart dot org>
17544
17545         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
17546         (gst_ffmpegcolorspace_chain):
17547           no point in doing any chaining if the pad we want to push from
17548           isn't usable.
17549
17550 2004-07-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17551
17552         * gst-libs/gst/riff/riff-media.c:
17553         (gst_riff_create_audio_caps_with_data):
17554           Fix double end-to-native symbol conversion (#148021).
17555
17556 2004-07-20  David Schleef  <ds@schleef.org>
17557
17558         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate):
17559         Don't use an Atom that doesn't exist.
17560
17561 2004-07-20  Wim Taymans  <wim@fluendo.com>
17562
17563         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
17564         (gst_multifdsink_add), (gst_multifdsink_get_stats),
17565         (gst_multifdsink_client_remove),
17566         (gst_multifdsink_handle_client_write),
17567         (gst_multifdsink_queue_buffer):
17568         * gst/tcp/gstmultifdsink.h:
17569         More multifdsink stats. Avoid deadlock by releasing locks
17570         before sending out a signal.
17571
17572 2004-07-20  Thomas Vander Stichele  <thomas at apestaart dot org>
17573
17574         * po/LINGUAS:
17575         * po/hu.po:
17576           added Hungarian translation (Laszlo Dvornik)
17577
17578 2004-07-20  Wim Taymans  <wim@fluendo.com>
17579
17580         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
17581         (gst_multifdsink_add), (gst_multifdsink_client_remove),
17582         (gst_multifdsink_handle_client_write),
17583         (gst_multifdsink_queue_buffer):
17584         * gst/tcp/gsttcp-marshal.list:
17585         Fixed the stupid marshal definition.
17586
17587 2004-07-20  Wim Taymans  <wim@fluendo.com>
17588
17589         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
17590         (gst_multifdsink_init), (gst_multifdsink_add),
17591         (gst_multifdsink_client_remove),
17592         (gst_multifdsink_handle_client_write),
17593         (gst_multifdsink_queue_buffer), (gst_multifdsink_chain),
17594         (gst_multifdsink_set_property), (gst_multifdsink_get_property),
17595         (gst_multifdsink_init_send):
17596         * gst/tcp/gstmultifdsink.h:
17597         Added more stats, added timeout for a client, fixed some typos
17598         and added some comments.
17599
17600 2004-07-20  Wim Taymans  <wim@fluendo.com>
17601
17602         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_class_init),
17603         (gst_multifdsink_add), (gst_multifdsink_get_stats),
17604         (gst_multifdsink_client_remove),
17605         (gst_multifdsink_handle_client_write):
17606         * gst/tcp/gstmultifdsink.h:
17607         * gst/tcp/gsttcp-marshal.list:
17608         Added get_stats method that returns a GValueArray of
17609         stats values.
17610
17611 2004-07-19  Benjamin Otte  <otte@gnome.org>
17612
17613         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
17614           make sure longname, description and author are valid UTF-8
17615
17616 2004-07-19  Thomas Vander Stichele  <thomas at apestaart dot org>
17617
17618         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state),
17619         (gst_ximagesink_set_property):
17620         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state),
17621         (gst_xvimagesink_set_property):
17622           make sure SYNCHRONOUS is respected after getting the X context
17623
17624 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17625
17626         * gst/matroska/matroska-demux.c:
17627         (gst_matroska_demux_handle_src_event),
17628         (gst_matroska_demux_parse_blockgroup):
17629         * gst/matroska/matroska-ids.h:
17630           add BlockReference tag and ignore it to clear out log.
17631           ignore NAVIGATION events to clear out log.
17632
17633 2004-07-18  Thomas Vander Stichele  <thomas at apestaart dot org>
17634
17635         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
17636         (gst_matroska_demux_add_stream):
17637         * gst/matroska/matroska-mux.c: (gst_matroska_mux_class_init):
17638           add debug categories
17639
17640 2004-07-16  Wim Taymans  <wim@fluendo.com>
17641
17642         * ext/libpng/Makefile.am:
17643         * ext/libpng/gstpng.c: (plugin_init):
17644         * ext/libpng/gstpngdec.c: (user_error_fn), (user_warning_fn),
17645         (gst_pngdec_get_type), (gst_pngdec_base_init),
17646         (gst_pngdec_class_init), (gst_pngdec_sinklink), (gst_pngdec_init),
17647         (gst_pngdec_src_getcaps), (user_read_data), (gst_pngdec_chain):
17648         * ext/libpng/gstpngdec.h:
17649         Added png decoder.
17650
17651 2004-07-16  Julien MOUTTE  <julien@moutte.net>
17652
17653         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
17654         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_new),
17655         (gst_ximagesink_ximage_destroy), (gst_ximagesink_sink_link),
17656         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
17657         (gst_ximagesink_buffer_alloc):
17658         * sys/ximage/ximagesink.h:
17659         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
17660         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
17661         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
17662         (gst_xvimagesink_buffer_alloc):
17663         * sys/xvimage/xvimagesink.h: Getting the 2 video sinks synchronized
17664         again. Using internal data pointer of the x(v)image to store image's
17665         data to be coherent with the buffer alloc mechanism. Investigated the
17666         image destruction code to be sure that everything gets freed correctly.
17667
17668 2004-07-16  Wim Taymans  <wim@fluendo.com>
17669
17670         * gst-libs/gst/riff/riff-read.c:
17671         (gst_riff_read_strf_vids_with_data),
17672         (gst_riff_read_strf_auds_with_data):
17673         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
17674         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
17675         Make sure we don't create 0 sized subbuffers in riff-read.
17676         Signal the no more pads signal after reading the avi header.
17677
17678 2004-07-16  Wim Taymans  <wim@fluendo.com>
17679
17680         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17681         (gst_decode_bin_class_init), (gst_decode_bin_is_dynamic),
17682         (gst_decode_bin_factory_filter), (compare_ranks), (print_feature),
17683         (gst_decode_bin_init), (gst_decode_bin_dispose),
17684         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
17685         (no_more_pads), (close_link), (type_found),
17686         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
17687         (gst_decode_bin_change_state), (plugin_init):
17688         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
17689         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
17690         (gst_play_base_bin_dispose), (queue_overrun),
17691         (gen_preroll_element), (remove_prerolls), (unknown_type),
17692         (no_more_pads), (new_stream), (setup_source),
17693         (gst_play_base_bin_set_property), (gst_play_base_bin_get_property),
17694         (play_base_eos), (gst_play_base_bin_change_state),
17695         (gst_play_base_bin_add_element),
17696         (gst_play_base_bin_remove_element),
17697         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
17698         (gst_play_base_bin_unlink_stream),
17699         (gst_play_base_bin_get_streaminfo):
17700         * gst/playback/gstplaybasebin.h:
17701         Better error recovery. Added configurable preroll queue size. Faster
17702         detection of no-more-pads.
17703
17704 2004-07-16  Wim Taymans  <wim@fluendo.com>
17705
17706         * gst-libs/gst/video/video.h:
17707         Added 32 bits RGBA. Not sure if we should use another mime-type
17708         for alpha rgb. Currently the presence of the alpha_mask property
17709         signals an alpha channel.
17710
17711 2004-07-16  Wim Taymans  <wim@fluendo.com>
17712
17713         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
17714         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
17715         FPS seems to be 0.0 to MAX everywhere else.
17716
17717 2004-07-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
17718
17719         * gst-libs/gst/riff/riff-media.c:
17720         (gst_riff_create_video_caps_with_data):
17721           mp42/mp43 (no caps) exist too.
17722         * gst/matroska/matroska-demux.c: (gst_matroska_demux_video_caps):
17723           Set pixel_width/height; we've got them in-caps.
17724         * gst/typefind/gsttypefindfunctions.c: (plugin_init):
17725         * gst/wavparse/gstwavparse.c: (plugin_init):
17726           Both are valid primary.
17727         * sys/oss/gstossmixer.c:
17728           Remove i18n hack and enable translations.
17729
17730 2004-07-15  Benjamin Otte  <otte@gnome.org>
17731
17732         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
17733         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy):
17734           fix for non-shm xv. Original patch by Tim Ringenbach (fixes #147248)
17735
17736 2004-07-15  Benjamin Otte  <otte@gnome.org>
17737
17738         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
17739         (gst_alsa_sw_params_dump), (gst_alsa_hw_params_dump),
17740         (gst_alsa_close_audio):
17741           disable some of the debugging code for now. Writing debugging to a
17742           buffer is broken in current alsalib releases.
17743
17744 2004-07-12  Benjamin Otte  <otte@gnome.org>
17745
17746         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
17747           use bufferpools
17748
17749 2004-07-14  Thomas Vander Stichele  <thomas at apestaart dot org>
17750
17751         * ext/theora/theoradec.c: (gst_theora_dec_class_init),
17752         (theora_dec_src_query), (theora_dec_event):
17753         * ext/theora/theoraenc.c: (gst_theora_enc_class_init):
17754           add debugging categories.  Remove \n's.
17755
17756 2004-07-13  Johan Dahlin  <johan@gnome.org>
17757
17758         * gst/playback/gstplaybin.c (gst_play_bin_set_property)
17759         (gst_play_bin_get_property): Impl.
17760
17761 2004-07-13  Wim Taymans  <wim@fluendo.com>
17762
17763         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_seek_before):
17764         When trying to find the stream length, seek back N pages
17765         instead of just one, where N is the number of streams in
17766         the current chain.
17767
17768 2004-07-13  Wim Taymans  <wim@fluendo.com>
17769
17770         * gst-libs/gst/riff/riff-media.c:
17771         (gst_riff_create_audio_caps_with_data),
17772         (gst_riff_create_audio_caps),
17773         (gst_riff_create_audio_template_caps):
17774         * gst-libs/gst/riff/riff-media.h:
17775         * gst-libs/gst/riff/riff-read.c:
17776         (gst_riff_read_strf_vids_with_data),
17777         (gst_riff_read_strf_auds_with_data), (gst_riff_read_strf_auds):
17778         * gst-libs/gst/riff/riff-read.h:
17779         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query),
17780         (gst_avi_demux_add_stream):
17781         Set codec_data on caps for avidemuxer.
17782
17783 2004-07-12  David Schleef  <ds@schleef.org>
17784
17785         * configure.ac: Fix test for Objective C
17786
17787 2004-07-12  Jan Schmidt  <thaytan@mad.scientist.com>
17788         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_get_capslist),
17789         (gst_gdk_pixbuf_chain):
17790           Add svg and pcx to template caps, and ensure that getcaps returns a
17791           subset of the template caps.
17792           Copy each row manually for output, as gdkpixbuf may pad the
17793           rowstride to a 32-bit word boundary.
17794
17795 2004-07-12  Wim Taymans  <wim@fluendo.com>
17796
17797         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps),
17798         (gst_riff_create_video_template_caps):
17799         Fix the template caps to include some more media types.
17800
17801 2004-07-12  Wim Taymans  <wim@fluendo.com>
17802
17803         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17804         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
17805         (compare_ranks), (print_feature), (gst_decode_bin_init),
17806         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
17807         (try_to_link_1), (new_pad), (close_link), (type_found),
17808         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
17809         (gst_decode_bin_change_state), (plugin_init):
17810         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
17811         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
17812         (gst_play_base_bin_dispose), (queue_overrun),
17813         (gen_preroll_element), (remove_prerolls), (no_more_pads),
17814         (new_stream), (setup_source), (gst_play_base_bin_set_property),
17815         (gst_play_base_bin_get_property), (play_base_eos),
17816         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
17817         (gst_play_base_bin_remove_element),
17818         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
17819         (gst_play_base_bin_unlink_stream),
17820         (gst_play_base_bin_get_streaminfo):
17821         * gst/playback/gstplaybasebin.h:
17822         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
17823         (gst_play_bin_class_init), (gst_play_bin_init),
17824         (gst_play_bin_dispose), (gst_play_bin_set_property),
17825         (gst_play_bin_get_property), (gen_video_element),
17826         (gen_audio_element), (remove_sinks), (setup_sinks),
17827         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
17828         (gst_play_bin_send_event), (gst_play_bin_get_formats),
17829         (gst_play_bin_convert), (gst_play_bin_get_query_types),
17830         (gst_play_bin_query), (plugin_init):
17831         * gst/playback/test4.c: (main):
17832         More fixes on reusing of the element.
17833
17834 2004-07-11  Benjamin Otte  <otte@gnome.org>
17835
17836         * ext/mad/gstmad.c: (normal_seek):
17837           allow seeking for other methods than just SET
17838
17839 2004-07-11  Andy Wingo  <wingo@pobox.com>
17840
17841         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_link): For
17842         float, "any" caps -> buffer_frames=[0,MAX].
17843
17844         * gst/interleave/interleave.c (interleave_getcaps): Seems the core
17845         doesn't intersect our caps with the template any more. Do it
17846         ourselves.
17847         (interleave_buffered_loop): Use g_newa instead of malloc/free.
17848
17849 2004-07-09  Wim Taymans  <wim@fluendo.com>
17850
17851         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
17852         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
17853         (compare_ranks), (print_feature), (gst_decode_bin_init),
17854         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
17855         (try_to_link_1), (new_pad), (close_link), (type_found),
17856         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
17857         (gst_decode_bin_change_state), (plugin_init):
17858         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
17859         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
17860         (gst_play_base_bin_dispose), (queue_overrun),
17861         (gen_preroll_element), (remove_prerolls), (no_more_pads),
17862         (new_stream), (setup_source), (gst_play_base_bin_set_property),
17863         (gst_play_base_bin_get_property), (play_base_eos),
17864         (gst_play_base_bin_change_state), (gst_play_base_bin_add_element),
17865         (gst_play_base_bin_remove_element),
17866         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
17867         (gst_play_base_bin_unlink_stream),
17868         (gst_play_base_bin_get_streaminfo):
17869         * gst/playback/gstplaybasebin.h:
17870         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
17871         (gst_play_bin_class_init), (gst_play_bin_init),
17872         (gst_play_bin_dispose), (gst_play_bin_set_property),
17873         (gst_play_bin_get_property), (gen_video_element),
17874         (gen_audio_element), (remove_sinks), (setup_sinks),
17875         (gst_play_bin_change_state), (gst_play_bin_get_event_masks),
17876         (gst_play_bin_send_event), (gst_play_bin_get_formats),
17877         (gst_play_bin_convert), (gst_play_bin_get_query_types),
17878         (gst_play_bin_query), (plugin_init):
17879         * gst/playback/test4.c: (main):
17880         Work on object reuse and seeking.
17881
17882 2004-07-09  Wim Taymans  <wim@fluendo.com>
17883
17884         * examples/seeking/seek.c: (iterate):
17885         Don't consume all CPU in the idle loop.
17886
17887 2004-07-09  Wim Taymans  <wim@fluendo.com>
17888
17889         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_new_output_pad),
17890         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_process_private):
17891         Add pad to element *after* setting the pad functions so that
17892         the scheduler can use the correct ones.
17893
17894 2004-07-09  Wim Taymans  <wim@fluendo.com>
17895
17896         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
17897         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_chain):
17898         Sync to keyframe after seek
17899
17900 2004-07-09  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17901
17902         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
17903         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
17904         (gst_alsa_sink_loop), (gst_alsa_sink_change_state):
17905         * ext/alsa/gstalsasrc.c: (gst_alsa_src_change_state):
17906         * ext/libvisual/visual.c: (gst_visual_change_state):
17907         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_change_state):
17908         * ext/theora/theoradec.c: (theora_dec_change_state):
17909         * ext/theora/theoraenc.c: (theora_enc_change_state):
17910         * ext/vorbis/vorbisdec.c: (vorbis_dec_change_state):
17911         * gst-libs/gst/navigation/navigation.c:
17912         * gst/adder/gstadder.c: (gst_adder_change_state):
17913         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
17914         (gst_audio_convert_get_buffer):
17915         * gst/multipart/multipartdemux.c:
17916         (gst_multipart_demux_change_state):
17917         * gst/playback/gstdecodebin.c: (gst_decode_bin_change_state):
17918         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_change_state):
17919         * gst/playback/gstplaybin.c: (gst_play_bin_change_state):
17920         * gst/videoscale/gstvideoscale.c:
17921         (gst_videoscale_handle_src_event):
17922         * gst/volume/gstvolume.c: (volume_chain_int16):
17923           don't assert in state change, this should be done by the base
17924           GstElement class.
17925           various debugging fixes.
17926
17927 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17928
17929         * configure.ac:
17930         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
17931         (gst_play_dispose), (gst_play_set_location),
17932         (gst_play_set_data_src), (gst_play_set_video_sink),
17933         (gst_play_set_audio_sink), (gst_play_set_visualization),
17934         (gst_play_connect_visualization), (gst_play_get_sink_element),
17935         (gst_play_get_all_by_interface):
17936         * gst-libs/gst/play/play.h:
17937           add new method to get elements implementing an interface.
17938           add various error logging
17939
17940 2004-07-08  Wim Taymans  <wim@fluendo.com>
17941
17942         * examples/seeking/seek.c: (make_dv_pipeline), (make_avi_pipeline),
17943         (make_mpeg_pipeline), (make_mpegnt_pipeline),
17944         (make_playerbin_pipeline), (query_durations_elems),
17945         (query_durations_pads), (query_positions_elems),
17946         (query_positions_pads), (update_scale), (iterate), (stop_seek),
17947         (main):
17948         Added playbin seeking example.
17949
17950 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17951
17952         * gst-libs/gst/play/play.c: (gst_play_set_location),
17953         (gst_play_set_data_src), (gst_play_set_video_sink),
17954         (gst_play_set_audio_sink), (gst_play_set_visualization),
17955         (gst_play_connect_visualization), (gst_play_get_framerate):
17956           use a macro to look up elements from hash table
17957
17958 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17959
17960         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
17961         (gst_play_get_length_callback), (gst_play_set_location),
17962         (gst_play_seek_to_time), (gst_play_set_data_src),
17963         (gst_play_set_video_sink), (gst_play_set_audio_sink),
17964         (gst_play_set_visualization), (gst_play_connect_visualization),
17965         (gst_play_get_sink_element):
17966         - add debugging info
17967         - fix looking up sink elements by iterating over complete caps
17968         - put everything except for source and autoplugger in a complete bin
17969
17970 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17971
17972         * ext/alsa/gstalsa.c: (gst_alsa_drain_audio):
17973         * ext/alsa/gstalsasink.c: (gst_alsa_sink_flush_one_pad),
17974         (gst_alsa_sink_check_event), (gst_alsa_sink_mmap),
17975         (gst_alsa_sink_write), (gst_alsa_sink_loop):
17976         * ext/alsa/gstalsasink.h:
17977         - add debugging info
17978         - clean up schizophrenia of data/buffer/event
17979         - fix double event unref error
17980
17981 2004-07-08  Wim Taymans  <wim@fluendo.com>
17982
17983         * gst/playback/Makefile.am:
17984         Add headers to noinst
17985
17986 2004-07-08  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
17987
17988         * tools/gst-launch-ext-m.m:
17989         * tools/gst-launch-ext.1.in:
17990           convert to the third millenium
17991
17992 2004-07-07  David Schleef  <ds@schleef.org>
17993
17994         * sys/dxr3/Makefile.am: noinst_SOURCES should be nodist_SOURCES
17995
17996 2004-07-07  Wim Taymans  <wim@fluendo.com>
17997
17998         * gst/playback/Makefile.am:
17999         * gst/playback/README:
18000         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
18001         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
18002         (compare_ranks), (print_feature), (gst_decode_bin_init),
18003         (gst_decode_bin_dispose), (find_compatibles), (close_pad_link),
18004         (try_to_link_1), (new_pad), (close_link), (type_found),
18005         (gst_decode_bin_set_property), (gst_decode_bin_get_property),
18006         (plugin_init):
18007         * gst/playback/gstplaybasebin.c: (gst_play_base_bin_get_type),
18008         (gst_play_base_bin_class_init), (gst_play_base_bin_init),
18009         (gst_play_base_bin_dispose), (rebuild_pipeline), (queue_overrun),
18010         (gen_preroll_element), (no_more_pads), (new_stream),
18011         (setup_source), (gst_play_base_bin_set_property),
18012         (gst_play_base_bin_get_property), (gst_play_base_bin_change_state),
18013         (gst_play_base_bin_add_element),
18014         (gst_play_base_bin_remove_element),
18015         (gst_play_base_bin_mute_stream), (gst_play_base_bin_link_stream),
18016         (gst_play_base_bin_unlink_stream),
18017         (gst_play_base_bin_get_streaminfo):
18018         * gst/playback/gstplaybasebin.h:
18019         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
18020         (gst_play_bin_class_init), (gst_play_bin_init),
18021         (gst_play_bin_dispose), (gst_play_bin_set_property),
18022         (gst_play_bin_get_property), (gen_video_element),
18023         (gen_audio_element), (setup_sinks), (gst_play_bin_change_state),
18024         (gst_play_bin_get_event_masks), (gst_play_bin_send_event),
18025         (gst_play_bin_get_formats), (gst_play_bin_convert),
18026         (gst_play_bin_get_query_types), (gst_play_bin_query),
18027         (plugin_init):
18028         * gst/playback/gststreaminfo.c: (gst_stream_type_get_type),
18029         (gst_stream_info_get_type), (gst_stream_info_class_init),
18030         (gst_stream_info_init), (gst_stream_info_new),
18031         (gst_stream_info_dispose), (gst_stream_info_set_property),
18032         (gst_stream_info_get_property):
18033         * gst/playback/gststreaminfo.h:
18034         * gst/playback/test.c: (gen_video_element), (gen_audio_element),
18035         (main):
18036         * gst/playback/test2.c: (main):
18037         * gst/playback/test3.c: (update_scale), (main):
18038         More playbin fixes. Added README. Do better element filtering.
18039         Added base class to preroll media. Added test apps.
18040
18041 2004-07-07  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
18042
18043         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_flush_decoder):
18044         * ext/mpeg2dec/gstmpeg2dec.h:
18045           various debugging improvements.  Reset stream to next picture
18046           instead of sequence header, otherwise seeks cannot work.
18047
18048 2004-07-07  Wim Taymans  <wim@fluendo.com>
18049
18050         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
18051         (gst_video_box_class_init), (gst_video_box_set_property),
18052         (gst_video_box_i420), (gst_video_box_ayuv), (gst_video_box_chain):
18053         Use pad_alloc where possible.
18054
18055 2004-07-07  Wim Taymans  <wim@fluendo.com>
18056
18057         * sys/oss/gstosselement.c: (gst_osselement_reset),
18058         (gst_osselement_parse_caps):
18059         * sys/oss/gstosselement.h:
18060         * sys/oss/gstosssrc.c: (gst_osssrc_get):
18061         Fix offset on osssrc.
18062
18063 2004-07-07  Wim Taymans  <wim@fluendo.com>
18064
18065         * ext/theora/theora.c: (plugin_init):
18066         * ext/theora/theoradec.c: (theora_dec_from_granulepos),
18067         (theora_dec_src_query), (theora_dec_chain):
18068         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18069         (theora_enc_sink_link), (theora_buffer_from_packet),
18070         (theora_push_packet), (theora_enc_chain):
18071         Fix theora granulepos calculation.
18072         Fix overflow in duration/position calculation.
18073         Bump rank to PRIMARY for theoradec.
18074         Use granulepos of last packet to calculate position.
18075         Set keyframe flag on buffers when needed.
18076
18077 2004-07-06  David Schleef  <ds@schleef.org>
18078
18079         * gst/playback/Makefile.am: 'test' in bin_PROGRAMS?  Are you
18080         serious?  (Fixed, obviously.)
18081
18082 2004-07-06  Thomas Vander Stichele  <thomas at apestaart dot org>
18083
18084         * po/LINGUAS:
18085         * po/cs.po:
18086           added Czech translation (Miloslav Trmac)
18087
18088 2004-07-05  Wim Taymans  <wim@fluendo.com>
18089
18090         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
18091         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
18092         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
18093         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
18094         (close_link), (type_found), (gst_decode_bin_set_property),
18095         (gst_decode_bin_get_property), (gst_decode_bin_get_event_masks),
18096         (gst_decode_bin_send_event), (gst_decode_bin_get_formats),
18097         (gst_decode_bin_convert), (gst_decode_bin_get_query_types),
18098         (gst_decode_bin_query), (plugin_init):
18099         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
18100         (gst_play_bin_class_init), (gst_play_bin_init),
18101         (gst_play_bin_dispose), (rebuild_pipeline), (get_audio_element),
18102         (get_video_element), (new_pad), (setup_source),
18103         (gst_play_bin_set_property), (gst_play_bin_get_property),
18104         (gst_play_bin_change_state), (gst_play_bin_add_element),
18105         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
18106         (gst_play_bin_send_event), (gst_play_bin_get_formats),
18107         (gst_play_bin_convert), (gst_play_bin_get_query_types),
18108         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
18109         * gst/playback/test.c: (main):
18110         More fixes, cleaned up playbin, make it use decodebin. Added
18111         threaded property to playbin.
18112
18113 2004-07-05  Wim Taymans  <wim@fluendo.com>
18114
18115         * configure.ac:
18116         * gst/playback/Makefile.am:
18117         * gst/playback/decodetest.c: (main):
18118         * gst/playback/gstdecodebin.c: (gst_decode_bin_get_type),
18119         (gst_decode_bin_class_init), (gst_decode_bin_factory_filter),
18120         (compare_ranks), (gst_decode_bin_init), (gst_decode_bin_dispose),
18121         (find_compatibles), (close_pad_link), (try_to_link_1), (new_pad),
18122         (close_link), (type_found), (gst_decode_bin_set_property),
18123         (gst_decode_bin_get_property), (gst_decode_bin_change_state),
18124         (gst_decode_bin_get_event_masks), (gst_decode_bin_send_event),
18125         (gst_decode_bin_get_formats), (gst_decode_bin_convert),
18126         (gst_decode_bin_get_query_types), (gst_decode_bin_query),
18127         (plugin_init):
18128         * gst/playback/gstplaybin.c: (gst_play_bin_get_type),
18129         (gst_play_bin_class_init), (gst_play_bin_init),
18130         (gst_play_bin_dispose), (gen_default_output), (rebuild_pipeline),
18131         (collect_sink_pads), (find_compatibles), (close_pad_link),
18132         (try_to_link_1), (new_pad), (close_link), (type_found),
18133         (setup_source), (gst_play_bin_set_property),
18134         (gst_play_bin_get_property), (gst_play_bin_factory_filter),
18135         (compare_ranks), (gst_play_bin_collect_factories),
18136         (gst_play_bin_change_state), (gst_play_bin_add_element),
18137         (gst_play_bin_remove_element), (gst_play_bin_get_event_masks),
18138         (gst_play_bin_send_event), (gst_play_bin_get_formats),
18139         (gst_play_bin_convert), (gst_play_bin_get_query_types),
18140         (gst_play_bin_query), (gst_play_bin_get_clock), (plugin_init):
18141         * gst/playback/test.c: (main):
18142         Added some playback helper elements and some test apps, very alpha
18143         still.
18144
18145 2004-07-04  Benjamin Otte  <otte@gnome.org>
18146
18147         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
18148           only restart audio when we indeed have an xrun to fix repeated
18149           xruns. Fix suggested by Giuliano Pochini.
18150
18151 2004-07-03  David Schleef  <ds@schleef.org>
18152
18153         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper): Disable
18154         call to gst_debug_log() if debugging is disabled (bug #145118)
18155
18156 2004-07-03  Benjamin Otte  <otte@gnome.org>
18157
18158         * ext/alsa/gstalsa.c: (gst_alsa_xrun_recovery):
18159           use our own functions for restarting the alsa device.
18160         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18161           I should apply patches myself - use MIN for the third argument, not
18162           the second, this fixes seeking
18163
18164 2004-07-02  David Schleef  <ds@schleef.org>
18165
18166         * ext/flac/gstflacdec.c: (gst_flacdec_class_init),
18167         (gst_flacdec_write):  Actually, GST_PAD_CAPS() has nothing to
18168         do with the logic.
18169
18170 2004-07-02  David Schleef  <ds@schleef.org>
18171
18172         * ext/flac/gstflacdec.c: (gst_flacdec_write):  Set duration on
18173         output buffers.  Fix logic mistake.  (bug #144866)
18174
18175 2004-07-02  David Schleef  <ds@schleef.org>
18176
18177         * gst-libs/gst/xoverlay/Makefile.am: xoverlay no longer depends
18178         on X.  (bug #144753)
18179
18180 2004-07-02  David Schleef  <ds@schleef.org>
18181
18182         * gst/wavenc/gstwavenc.c: (gst_wavenc_setup),
18183         (gst_wavenc_stop_file): Switch to GST_WRITE_UINT32_LE macros
18184         (bug #144624)
18185         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
18186         (gst_osselement_rate_probe_check): Add another workaround for
18187         buggy drivers (bug #145336)
18188
18189 2004-07-02  David Schleef  <ds@schleef.org>
18190
18191         * gst/tcp/gstmultifdsink.c: (gst_multifdsink_handle_client_write):
18192         Most systems don't have MSG_NOSIGNAL.
18193
18194 2004-07-02  Thomas Vander Stichele  <thomas at apestaart dot org>
18195
18196         * Makefile.am:
18197         * gst-libs/gst/colorbalance/Makefile.am:
18198         * gst-libs/gst/mixer/Makefile.am:
18199         * gst-libs/gst/play/Makefile.am:
18200         * gst-libs/gst/tuner/Makefile.am:
18201           (hopefully) fix both install and dist and make error message useful.
18202           needs testing across automakes.
18203
18204 2004-07-02  Benjamin Otte  <otte@gnome.org>
18205
18206         * ext/ogg/gstogg.c: (plugin_init):
18207           we require bytestream now
18208         * ext/ogg/gstoggdemux.c:
18209           huge diff to implement chain setup in a fast and generic way. This
18210           improves tag reading and startup of huge files (read: Theora videos)
18211           quite a bit. It probably contains bugs, too, so please test.
18212           Seeking is not improved to the fast method.
18213
18214 2004-06-29  Wim Taymans  <wim@fluendo.com>
18215
18216         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
18217         * ext/ogg/gstoggmux.c:
18218         Fix memleak in oggdemux when running unconnected pads.
18219         doc update in mux, start working on keyframe mode.
18220
18221 2004-06-29  Benjamin Otte  <otte@gnome.org>
18222
18223         * sys/oss/gstosssink.c:
18224         * sys/oss/gstosssrc.c:
18225           advertise correct template caps - we indeed do non-native endianness
18226           and 8bit audio has no endianness
18227         * sys/ximage/ximagesink.c: (gst_ximagesink_getcaps):
18228         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_getcaps):
18229           avoid (wrong) duplications in getcaps function and return
18230           template caps
18231
18232 2004-06-29  Wim Taymans  <wim@fluendo.com>
18233
18234         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
18235         (gst_multifdsink_class_init), (gst_multifdsink_add),
18236         (gst_multifdsink_remove), (gst_multifdsink_clear),
18237         (gst_multifdsink_client_remove),
18238         (gst_multifdsink_handle_client_read),
18239         (gst_multifdsink_client_queue_data),
18240         (gst_multifdsink_client_queue_caps),
18241         (gst_multifdsink_client_queue_buffer),
18242         (gst_multifdsink_handle_client_write),
18243         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
18244         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
18245         (gst_multifdsink_init_send), (gst_multifdsink_close):
18246         Fix wrong GList iteration that could crash the server when
18247         more then 2 clients disconnect at the same time. Read all the
18248         pending commands in one batch to recover from command storms under
18249         very heavy load.
18250
18251 2004-06-28  Wim Taymans  <wim@fluendo.com>
18252
18253         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
18254         (gst_videomixer_pad_class_init), (gst_videomixer_pad_get_property),
18255         (gst_videomixer_pad_set_property),
18256         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_init),
18257         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
18258         (gst_videomixer_class_init), (gst_videomixer_init),
18259         (gst_videomixer_request_new_pad), (gst_videomixer_blend_ayuv_i420),
18260         (pad_zorder_compare), (gst_videomixer_sort_pads),
18261         (gst_videomixer_fill_checker), (gst_videomixer_fill_color),
18262         (gst_videomixer_fill_queues), (gst_videomixer_blend_buffers),
18263         (gst_videomixer_update_queues), (gst_videomixer_loop),
18264         (plugin_init):
18265         Avoid divide by zero, choose masterpad as the pad with the highest
18266         framerate.
18267
18268 2004-06-27  Julien Moutte  <julien@moutte.net>
18269
18270         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
18271         (gst_ximagesink_xwindow_new):
18272         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
18273         (gst_xvimagesink_xwindow_new): I prefer locking the mutex in the
18274         function directly. We might want to call it from somewhere else one day.
18275
18276 2004-06-27  Julien Moutte  <julien@moutte.net>
18277
18278         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_decorate),
18279         (gst_ximagesink_xwindow_new):
18280         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_decorate),
18281         (gst_xvimagesink_xwindow_new): Trying to fix the random behaviour of
18282         window decorations.
18283
18284 2004-06-27  Wim Taymans  <wim@fluendo.com>
18285
18286         * ext/dv/gstdvdec.c: (gst_dvdec_class_init), (gst_dvdec_init),
18287         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
18288         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state),
18289         (gst_dvdec_set_property), (gst_dvdec_get_property):
18290         * ext/dv/gstdvdec.h:
18291         Implement drop_factor property to lower the framerate with
18292         a factor.
18293
18294 2004-06-27  Thomas Vander Stichele  <thomas at apestaart dot org>
18295
18296         * gst-libs/gst/colorbalance/Makefile.am:
18297         * gst-libs/gst/mixer/Makefile.am:
18298         * gst-libs/gst/play/Makefile.am:
18299         * gst-libs/gst/tuner/Makefile.am:
18300           unbreak Company's fix that didn't install the -enum.h files
18301
18302 2004-06-27  Wim Taymans  <wim@fluendo.com>
18303
18304         * ext/dv/gstdvdec.c: (gst_dvdec_push), (gst_dvdec_loop),
18305         (gst_dvdec_change_state):
18306         * ext/dv/gstdvdec.h:
18307         Fix timestamp, duration and offset of the buffers.
18308
18309 2004-06-27  Wim Taymans  <wim@fluendo.com>
18310
18311         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
18312         (gst_multifdsink_class_init), (gst_multifdsink_add),
18313         (gst_multifdsink_remove), (gst_multifdsink_clear),
18314         (gst_multifdsink_client_remove),
18315         (gst_multifdsink_handle_client_read),
18316         (gst_multifdsink_client_queue_data),
18317         (gst_multifdsink_client_queue_caps),
18318         (gst_multifdsink_client_queue_buffer),
18319         (gst_multifdsink_handle_client_write),
18320         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
18321         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
18322         (gst_multifdsink_init_send), (gst_multifdsink_close):
18323         * gst/tcp/gstmultifdsink.h:
18324         * gst/tcp/gsttcpserversink.c:
18325         (gst_tcpserversink_handle_server_read),
18326         (gst_tcpserversink_handle_select), (gst_tcpserversink_close):
18327         More multifdsink fixes, more recovery policy fixes.
18328         Removed stupid g_print
18329
18330 2004-06-26  Wim Taymans  <wim@fluendo.com>
18331
18332         * gst/tcp/Makefile.am:
18333         * gst/tcp/gstmultifdsink.c: (gst_recover_policy_get_type),
18334         (gst_multifdsink_get_type), (gst_multifdsink_base_init),
18335         (gst_multifdsink_class_init), (gst_multifdsink_init),
18336         (gst_multifdsink_debug_fdset), (gst_multifdsink_client_remove),
18337         (gst_multifdsink_handle_client_read),
18338         (gst_multifdsink_client_queue_data),
18339         (gst_multifdsink_client_queue_caps),
18340         (gst_multifdsink_client_queue_buffer),
18341         (gst_multifdsink_handle_client_write),
18342         (gst_multifdsink_recover_client), (gst_multifdsink_queue_buffer),
18343         (gst_multifdsink_handle_clients), (gst_multifdsink_thread),
18344         (gst_multifdsink_chain), (gst_multifdsink_set_property),
18345         (gst_multifdsink_get_property), (gst_multifdsink_init_send),
18346         (gst_multifdsink_close), (gst_multifdsink_change_state):
18347         * gst/tcp/gstmultifdsink.h:
18348         * gst/tcp/gsttcpplugin.c: (plugin_init):
18349         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_get_type),
18350         (gst_tcpserversink_class_init), (gst_tcpserversink_init),
18351         (gst_tcpserversink_handle_server_read),
18352         (gst_tcpserversink_handle_select),
18353         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property),
18354         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
18355         * gst/tcp/gsttcpserversink.h:
18356         Added multifdsink, made tcpserversink a subclass of fdsink, removed
18357         one of the locks, added recovery policy to multifdsink.
18358
18359 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
18360
18361         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
18362           fix decision for when getting frames with same timestamp
18363         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
18364         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
18365         (gst_v4lsrc_get_property):
18366         * sys/v4l/gstv4lsrc.h:
18367           add latency offset property
18368
18369 2004-06-26  Thomas Vander Stichele  <thomas at apestaart dot org>
18370
18371         * gst/videorate/gstvideorate.c: (gst_videorate_chain),
18372         (plugin_init):
18373           fix debugging. add category.
18374
18375 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18376
18377         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
18378           fix wrong offsets
18379
18380 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18381
18382         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
18383         (gst_alsa_src_get_time), (gst_alsa_src_loop),
18384         (gst_alsa_src_change_state):
18385           return a time that is in sync with the element's processing
18386
18387 2004-06-25  Wim Taymans  <wim@fluendo.com>
18388
18389         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
18390         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
18391         (gst_tcpserversink_client_remove),
18392         (gst_tcpserversink_handle_client_read),
18393         (gst_tcpserversink_client_queue_data),
18394         (gst_tcpserversink_client_queue_caps),
18395         (gst_tcpserversink_client_queue_buffer),
18396         (gst_tcpserversink_handle_client_write),
18397         (gst_tcpserversink_queue_buffer),
18398         (gst_tcpserversink_handle_clients), (gst_tcpserversink_thread),
18399         (gst_tcpserversink_chain), (gst_tcpserversink_set_property),
18400         (gst_tcpserversink_get_property), (gst_tcpserversink_init_send),
18401         (gst_tcpserversink_close):
18402         * gst/tcp/gsttcpserversink.h:
18403         Serversink rewrite. Really do non blocking writes to clients and
18404         maintain an internal queue to handle slower clients while not
18405         disturbing fast clients.
18406
18407 2004-06-25  Thomas Vander Stichele  <thomas at apestaart dot org>
18408
18409         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
18410           better debug, don't override OFFSET and OFFSET_END
18411
18412 2004-06-25  Iain <iain@prettypeople.org>
18413
18414         * gst-libs/gst/media-info/media-info-priv.c (gmi_set_mime): Add
18415         name=source for the wavparse pipeline.
18416
18417 2004-06-24  Johan Dahlin  <johan@gnome.org>
18418
18419         * ext/theora/theoraenc.c (theora_enc_chain): Call
18420         gst_pad_try_set_caps instead of gst_pad_set_explicit_caps so the
18421         streamheader caps are set correctly.
18422
18423 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18424
18425         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
18426         (gst_vorbisenc_setup), (gst_vorbisenc_set_property):
18427           respect minimum bitrate; same could be done for max bitrate
18428
18429 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18430
18431         * ext/vorbis/vorbisenc.c: (raw_caps_factory),
18432         (gst_vorbisenc_setup):
18433           fix sample rate range
18434
18435 2004-06-24  Thomas Vander Stichele  <thomas at apestaart dot org>
18436
18437         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_class_init),
18438         (gst_oggvorbisenc_setup):
18439         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_class_init),
18440         (gst_vorbisenc_setup):
18441           resolve ambiguities in code and description
18442
18443 2004-06-24  Wim Taymans  <wim@fluendo.com>
18444
18445         * ext/alsa/gstalsa.c: (gst_alsa_start), (gst_alsa_xrun_recovery):
18446         * ext/alsa/gstalsa.h:
18447         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
18448         (gst_alsa_src_update_avail), (gst_alsa_src_loop):
18449         Use alsa trigger_tstamp to get the timestamp of the first
18450         sample in the buffer for more precise sync. Some cleanups.
18451
18452 2004-06-24  Wim Taymans  <wim@fluendo.com>
18453
18454         * gst/audiorate/gstaudiorate.c: (gst_audiorate_link),
18455         (gst_audiorate_init), (gst_audiorate_chain),
18456         (gst_audiorate_set_property), (gst_audiorate_get_property):
18457         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
18458         (gst_videorate_chain):
18459         Added some logging, fixed an overflow bug in videorate.
18460
18461 2004-06-24  Benjamin Otte  <otte@gnome.org>
18462
18463         * ext/kio/Makefile.am:
18464           fix for builddir != srcdir and distcheck
18465
18466 2004-06-24  Benjamin Otte  <otte@gnome.org>
18467
18468         * gst-libs/gst/colorbalance/Makefile.am:
18469         * gst-libs/gst/mixer/Makefile.am:
18470         * gst-libs/gst/play/Makefile.am:
18471         * gst-libs/gst/tuner/Makefile.am:
18472         * gst/tcp/Makefile.am:
18473         * sys/dxr3/Makefile.am:
18474           don't include -enumtypes.[ch] or -marshal.[ch] files in the disted
18475           tarball.
18476           Also add all *.list files that were missing.
18477         * Makefile.am:
18478           add a distcheck hook to ensure the above doesn't happen again.
18479
18480 2004-06-23  David I. Lehn  <dlehn@users.sourceforge.net>
18481
18482         * ext/Makefile.am: s/DTS_DIR=dvdread/DTS_DIR=dts/
18483
18484 2004-06-23  Colin Walters  <walters@redhat.com>
18485
18486         * m4/Makefile.am: Distribute gst-fionread.m4.
18487
18488 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18489
18490         * configure.ac: back to dev
18491
18492 2004-06-23  Wim Taymans  <wim@fluendo.com>
18493
18494         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
18495         (gst_alsa_xrun_recovery):
18496         * ext/alsa/gstalsa.h:
18497         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event),
18498         (gst_alsa_sink_loop), (gst_alsa_sink_get_time):
18499         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init),
18500         (gst_alsa_src_get_time), (gst_alsa_src_update_avail),
18501         (gst_alsa_src_loop):
18502         Add clock to alsasrc. Take new capture timestamp when
18503         restarting after an overrun. Split up some functions between
18504         alsasrc and alsasink.
18505
18506 === release 0.8.2 ===
18507
18508 2004-06-23  Thomas Vander Stichele  <thomas at apestaart dot org>
18509
18510         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
18511         (gst_alsa_change_state), (gst_alsa_update_avail),
18512         (gst_alsa_xrun_recovery):
18513         * ext/alsa/gstalsa.h:
18514         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
18515           merge back changes from release
18516
18517 2004-06-23  Wim Taymans  <wim@fluendo.com>
18518
18519         * gst/audiorate/gstaudiorate.c: (gst_audiorate_class_init),
18520         (gst_audiorate_init), (gst_audiorate_chain),
18521         (gst_audiorate_set_property), (gst_audiorate_get_property):
18522         Implement sample dropping and notify
18523
18524 2004-06-22  Wim Taymans  <wim@fluendo.com>
18525
18526         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18527         (theora_enc_sink_link), (theora_buffer_from_packet),
18528         (theora_push_packet), (theora_enc_chain):
18529         Some cleanups, make sure the timestamps are correct.
18530
18531 2004-06-22  Wim Taymans  <wim@fluendo.com>
18532
18533         * ext/alsa/gstalsa.c: (gst_alsa_get_time), (gst_alsa_clock_update),
18534         (gst_alsa_change_state), (gst_alsa_update_avail),
18535         (gst_alsa_xrun_recovery):
18536         * ext/alsa/gstalsa.h:
18537         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
18538         Cleanups, take queued samples into account when reporting
18539         the time.
18540
18541 2004-06-22  Wim Taymans  <wim@fluendo.com>
18542
18543         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
18544         (gst_videorate_init):
18545         Initialize the property as well.
18546
18547 2004-06-22  Wim Taymans  <wim@fluendo.com>
18548
18549         * gst/videorate/gstvideorate.c: (gst_videorate_class_init),
18550         (gst_videorate_init), (gst_videorate_chain),
18551         (gst_videorate_set_property), (gst_videorate_get_property):
18552         Add property to make videorate silent.
18553         Add property to prefer new frames over old ones.
18554
18555 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18556
18557         * sys/osxvideo/Makefile.am:
18558         Workaround so that the osxvideo .so file gets linked with the
18559         Cocoa, OpenGL and QuickTime frameworks
18560
18561 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18562
18563         * sys/osxaudio/Makefile.am:
18564         Workaround so that the osxaudio .so file gets linked with the
18565         CoreAudio framework
18566
18567 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18568
18569         * configure.ac:
18570         Whoops, my fault...fixed build issues
18571
18572 2004-06-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18573
18574         * configure.ac:
18575         Add objective-c support if running in Darwin/Mac OS X
18576         * sys/Makefile.am:
18577         * sys/osxvideo:
18578         * sys/osxvideo/Makefile.am:
18579         * sys/osxvideo/osxvideosink.h:
18580         * sys/osxvideo/osxvideosink.m:
18581         * sys/osxvideo/cocoawindow.h:
18582         * sys/osxvideo/cocoawindow.m:
18583         Add osxvideosink, a cocoa-based osx video sink
18584
18585
18586 2004-06-19  Jan Schmidt  <thaytan@mad.scientist.com>
18587         * ext/dvdnav/gst-dvd:
18588         Grab the gconf key from the right spot
18589         * gst/debug/gstnavseek.c: (gst_navseek_init),
18590         (gst_navseek_segseek), (gst_navseek_handle_src_event),
18591         (gst_navseek_chain):
18592         * gst/debug/gstnavseek.h:
18593           Add 's', 'e' and 'l' keypresses to navseek to define the start,end
18594           and loop parameters of a segment seek.
18595         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_init),
18596         (gst_videotestsrc_get_event_masks),
18597         (gst_videotestsrc_handle_src_event), (gst_videotestsrc_get):
18598         * gst/videotestsrc/gstvideotestsrc.h:
18599           Add seeking support to videotestsrc
18600           Initialise the timestamp_offset variable.
18601
18602 2004-06-18  Wim Taymans  <wim@fluendo.com>
18603
18604         * ext/sidplay/gstsiddec.cc:
18605         Fix negotiation and set correct end offset.
18606
18607 2004-06-18  Thomas Vander Stichele  <thomas at apestaart dot org>
18608
18609         * configure.ac: branch and prerelease
18610
18611 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18612
18613         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init),
18614         (gst_tcpclientsrc_getcaps), (gst_tcpclientsrc_get),
18615         (gst_tcpclientsrc_init_receive):
18616         * gst/tcp/gsttcpclientsrc.h:
18617           read caps when connecting to server for GDP so we set them correctly
18618
18619 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18620
18621         * gst/videorate/gstvideorate.c: (gst_videorate_chain):
18622           notify drops and duplicates
18623         * gst/videoscale/videoscale.c: (videoscale_get_structure):
18624           no good reason to limit ourselves to 100x100
18625
18626 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18627
18628         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
18629         (gst_v4lsrc_open), (gst_v4lsrc_src_link), (gst_v4lsrc_getcaps),
18630         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
18631         (gst_v4lsrc_get_property):
18632         * sys/v4l/gstv4lsrc.h:
18633         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
18634         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
18635         (gst_v4l_set_audio):
18636         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_grab_frame),
18637         (gst_v4lsrc_try_capture):
18638         * sys/v4l/v4lsrc_calls.h:
18639           change try_palette to more general try_capture
18640           add autoprobe option so we can turn off autoprobing
18641           various fixes
18642
18643 2004-06-17  Thomas Vander Stichele  <thomas at apestaart dot org>
18644
18645         * configure.ac:
18646           add videorate
18647         * sys/ximage/ximagesink.c: (gst_ximagesink_finalize),
18648         (gst_ximagesink_class_init):
18649         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_finalize),
18650         (gst_xvimagesink_class_init):
18651           run them as finalize, not dispose, since dispose can be invoked
18652           multiple times
18653
18654 2004-06-17  Wim Taymans  <wim@fluendo.com>
18655
18656         * ext/alsa/gstalsa.c: (gst_alsa_init), (gst_alsa_dispose),
18657         (gst_alsa_get_time), (gst_alsa_xrun_recovery):
18658         * ext/alsa/gstalsa.h:
18659         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
18660         * ext/alsa/gstalsasrc.c: (gst_alsa_src_init), (gst_alsa_src_loop),
18661         (gst_alsa_src_change_state):
18662         * ext/alsa/gstalsasrc.h:
18663         Make the xrun code timestamp and offset the buffers correctly.
18664         moved the clock to the base class, use alsa methods to get time.
18665         Do correct timestamping on outgoing buffers.
18666
18667 2004-06-17  Wim Taymans  <wim@fluendo.com>
18668
18669         * gst/audiorate/Makefile.am:
18670         * gst/audiorate/gstaudiorate.c: (gst_audiorate_get_type),
18671         (gst_audiorate_base_init), (gst_audiorate_class_init),
18672         (gst_audiorate_link), (gst_audiorate_init), (gst_audiorate_chain),
18673         (gst_audiorate_set_property), (gst_audiorate_get_property),
18674         (gst_audiorate_change_state), (plugin_init):
18675         Added an audiorate converter that fills in gaps.
18676
18677 2004-06-17  Johan Dahlin  <johan@gnome.org>
18678
18679         * ext/tcp/*: Revert Zaheer changes, to make things actually work again.
18680
18681 2004-06-16  Wim Taymans  <wim@fluendo.com>
18682
18683         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get):
18684         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
18685         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
18686         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
18687         (gst_v4lsrc_get_property):
18688         * sys/v4l/gstv4lsrc.h:
18689         Added a copy mode to v4lsrc where it will output a copied version
18690         of its internal hardware buffer.
18691         Fix the wrong FLAG_SET usage. The flags are integers, not bits, you
18692         can't | them.
18693
18694 2004-06-16  Wim Taymans  <wim@fluendo.com>
18695
18696         * sys/oss/gstosssrc.c: (gst_osssrc_get):
18697         Timestamp fixes.
18698
18699 2004-06-16  Wim Taymans  <wim@fluendo.com>
18700
18701         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_sync_mode_get_type),
18702         (gst_v4lsrc_class_init), (gst_v4lsrc_init), (gst_v4lsrc_get_fps),
18703         (gst_v4lsrc_get), (gst_v4lsrc_set_property),
18704         (gst_v4lsrc_get_property):
18705         * sys/v4l/gstv4lsrc.h:
18706         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
18707         Added a sync mode enum property to control v4lsrc timestamp method
18708         Removed the use-fixed-fps property and moved functionality in
18709         the enum.
18710         Don't error on an error value from v4l-conf, it might not always
18711         be a real error.
18712
18713 2004-06-16  Wim Taymans  <wim@fluendo.com>
18714
18715         * gst/videorate/Makefile.am:
18716         * gst/videorate/gstvideorate.c: (gst_videorate_get_type),
18717         (gst_videorate_base_init), (gst_videorate_class_init),
18718         (gst_videorate_getcaps), (gst_videorate_link),
18719         (gst_videorate_init), (gst_videorate_chain),
18720         (gst_videorate_set_property), (gst_videorate_get_property),
18721         (gst_videorate_change_state), (plugin_init):
18722         Added a video timestamp corrector.
18723
18724 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18725
18726         fixed a potential leak with previous commit
18727
18728         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
18729
18730 2004-06-15  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18731
18732         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
18733         Added missing refcount, fixes bug #144425
18734         Cheers Tim for finding the bug
18735
18736 2004-06-15  Thomas Vander Stichele  <thomas at apestaart dot org>
18737
18738         * sys/v4l/gstv4l.c: (plugin_init):
18739         * sys/v4l/gstv4lcolorbalance.c:
18740         * sys/v4l/gstv4lcolorbalance.h:
18741         * sys/v4l/gstv4lelement.c:
18742         * sys/v4l/gstv4lelement.h:
18743         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
18744         * sys/v4l/gstv4lmjpegsink.h:
18745         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
18746         * sys/v4l/gstv4lmjpegsrc.h:
18747         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
18748         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
18749         (gst_v4lsrc_getcaps), (gst_v4lsrc_get):
18750         * sys/v4l/gstv4lsrc.h:
18751         * sys/v4l/gstv4ltuner.c:
18752         * sys/v4l/gstv4ltuner.h:
18753         * sys/v4l/gstv4lxoverlay.c:
18754         * sys/v4l/gstv4lxoverlay.h:
18755         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
18756         (gst_v4l_set_window), (gst_v4l_enable_overlay):
18757         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
18758         (gst_v4l_open), (gst_v4l_get_picture), (gst_v4l_get_audio),
18759         (gst_v4l_set_audio):
18760         * sys/v4l/v4l_calls.h:
18761         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
18762         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_sync_frame),
18763         (gst_v4lmjpegsink_set_buffer), (gst_v4lmjpegsink_set_playback),
18764         (gst_v4lmjpegsink_playback_init),
18765         (gst_v4lmjpegsink_playback_start), (gst_v4lmjpegsink_get_buffer),
18766         (gst_v4lmjpegsink_play_frame), (gst_v4lmjpegsink_wait_frame),
18767         (gst_v4lmjpegsink_playback_stop),
18768         (gst_v4lmjpegsink_playback_deinit):
18769         * sys/v4l/v4lmjpegsink_calls.h:
18770         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
18771         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_buffer),
18772         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
18773         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_capture_start),
18774         (gst_v4lmjpegsrc_grab_frame), (gst_v4lmjpegsrc_requeue_frame),
18775         (gst_v4lmjpegsrc_capture_stop), (gst_v4lmjpegsrc_capture_deinit):
18776         * sys/v4l/v4lmjpegsrc_calls.h:
18777         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
18778         (gst_v4lsrc_sync_frame), (gst_v4lsrc_set_capture),
18779         (gst_v4lsrc_capture_init), (gst_v4lsrc_capture_start),
18780         (gst_v4lsrc_grab_frame), (gst_v4lsrc_requeue_frame),
18781         (gst_v4lsrc_capture_stop), (gst_v4lsrc_capture_deinit),
18782         (gst_v4lsrc_try_palette):
18783         * sys/v4l/v4lsrc_calls.h:
18784           bunch of paranoia cleanups
18785
18786 2004-06-14  David Schleef  <ds@schleef.org>
18787
18788         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_init),
18789         (cdparanoia_get), (cdparanoia_open), (cdparanoia_change_state):
18790         Send discont events and change timestamps appropriately when
18791         we get a seek event.  (bug #144240)
18792         * ext/cdparanoia/gstcdparanoia.h:
18793
18794 2004-06-14  Benjamin Otte  <otte@gnome.org>
18795
18796         * ext/alsa/gstalsa.c: Use snd_pcm_hw_params_set_rate _near instead of
18797           snd_pcm_hw_params_set_rate  since the latter fails for no good
18798           reason on some setups.
18799
18800 2004-06-14  David Schleef  <ds@schleef.org>
18801
18802         * gst/volume/demo.c: (value_changed_callback): exp10() is not
18803         standard.  Thank you for playing.
18804
18805 2004-06-14  Wim Taymans  <wim@fluendo.com>
18806
18807         * gst/ffmpegcolorspace/imgconvert.c: (img_convert):
18808         Patch 1.3 broke the ordering of the colorspace info and
18809         made the plugin basically work by coincidence, reordered
18810         the info.
18811
18812 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18813
18814         * ext/lame/gstlame.c:
18815         * ext/mad/gstmad.c:
18816           sync caps.  Make sure mad can only output a list of rates, not
18817           a full range.  In the future, have three caps lists for each of the
18818           mpeg versions.  Change mpegversion to a double as well.
18819
18820 2004-06-14  Thomas Vander Stichele  <thomas at apestaart dot org>
18821
18822         * gst/volume/.cvsignore:
18823         * gst/volume/Makefile.am:
18824         * gst/volume/demo.c: (value_changed_callback), (idler),
18825         (setup_gui), (main):
18826           added small demo app
18827
18828 2004-06-13  Jan Schmidt  <thaytan@mad.scientist.com>
18829         * ext/esd/esdsink.c: (gst_esdsink_change_state):
18830         * ext/esd/esdsink.h:
18831         Close the esd connection on pause, because esd will just wait -
18832         blocking all other esd clients indefinitely.
18833
18834 2004-06-12  Christophe Fergeau  <teuf@gnome.org>
18835
18836         * gst/tags/gstvorbistag.c: replaced a g_warning which I added in my
18837           previous commit with GST_DEBUG
18838
18839 2004-06-12  Thomas Vander Stichele  <thomas at apestaart dot org>
18840
18841         * configure.ac:
18842           add a header check for a dvdread header in dvdnav.  Fixes #133002
18843
18844 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18845
18846         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_init_send):
18847         * gst/tcp/gsttcpclientsink.h:
18848         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_init_receive):
18849         * gst/tcp/gsttcpclientsrc.h:
18850         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_init),
18851         (gst_tcpserversink_handle_server_read),
18852         (gst_tcpserversink_init_send):
18853         * gst/tcp/gsttcpserversink.h:
18854         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_init_receive):
18855         * gst/tcp/gsttcpserversrc.h:
18856         Modified the tcp plugins so they are portable (IPv4,IPv6, any future
18857         version of IP)
18858
18859 2004-06-12  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
18860
18861         * configure.ac:
18862         Added ogg library so that OSX detects libtheora properly
18863
18864 2004-06-11  Wim Taymans  <wim@fluendo.com>
18865
18866         * ext/theora/theoradec.c: (theora_dec_chain),
18867         (theora_dec_change_state):
18868         Don't try to decode frames before we received a keyframe.
18869
18870 2004-06-11  Wim Taymans  <wim@fluendo.com>
18871
18872         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18873         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
18874         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
18875         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
18876         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
18877         Added property to set the maximum delay of a page.
18878
18879 2004-06-10  Wim Taymans  <wim@fluendo.com>
18880
18881         * ext/ogg/gstoggmux.c: (gst_ogg_mux_class_init),
18882         (gst_ogg_mux_init), (gst_ogg_mux_next_buffer),
18883         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
18884         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop),
18885         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property):
18886         Added max-delay property to control the maximum amount
18887         of data to put in one page.
18888
18889 2004-06-10  Wim Taymans  <wim@fluendo.com>
18890
18891         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
18892         (gst_theora_enc_init), (theora_enc_sink_link),
18893         (theora_buffer_from_packet), (theora_enc_set_property),
18894         (theora_enc_get_property):
18895         Set duration on encoded buffer, added some more properties
18896
18897 2004-06-10  Wim Taymans  <wim@fluendo.com>
18898
18899         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer),
18900         (gst_ogg_mux_get_headers), (gst_ogg_mux_set_header_on_caps),
18901         (gst_ogg_mux_send_headers), (gst_ogg_mux_loop):
18902         * ext/theora/theoraenc.c: (theora_enc_chain):
18903         Fix refcounting bugs
18904
18905 2004-06-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
18906
18907         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
18908         (gst_asf_demux_loop), (gst_asf_demux_process_file),
18909         (gst_asf_demux_process_data), (gst_asf_demux_handle_data),
18910         (gst_asf_demux_process_object), (gst_asf_demux_get_stream),
18911         (gst_asf_demux_process_chunk), (gst_asf_demux_handle_sink_event),
18912         (gst_asf_demux_handle_src_event), (gst_asf_demux_handle_src_query),
18913         (gst_asf_demux_change_state):
18914         * gst/asfdemux/gstasfdemux.h:
18915           You know Chimaira? "I - HATE - EVERYTHING". Yeah, that's what this
18916           feels like. I think we should set a new requirement for demuxers
18917           from now on to implement sane loop functions, data loops, query
18918           and seek functions before first commit into CVS. And this commit
18919           fixes all of the above.
18920
18921 2004-06-10  Christophe Fergeau  <teuf@gnome.org>
18922
18923         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add): make sure parsed
18924           vorbis comments are properly encoded in UTF-8 before adding them
18925           to a GstTagList
18926
18927 2004-06-09  Benjamin Otte  <otte@gnome.org>
18928
18929         * ext/alsa/gstalsa.c: (add_channels):
18930           handle min <= max correctly
18931         * ext/alsa/gstalsa.c: (gst_alsa_fixate_to_mimetype),
18932         (gst_alsa_fixate_field_nearest_int), (gst_alsa_fixate):
18933           add fixation functions so we fixate correctly. No preferring of alaw
18934           anymore because it's the first structure.
18935         * ext/alsa/gstalsa.h:
18936         * ext/alsa/gstalsa.c: (gst_alsa_sw_params_dump),
18937         (gst_alsa_hw_params_dump):
18938           add functions to ease debugging in alsalib
18939         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
18940         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
18941         (gst_alsa_start_audio):
18942           only specify hw params if we really setup a format (fixes #134007 -
18943           or at least works around it)
18944
18945 2004-06-09  Wim Taymans  <wim@fluendo.com>
18946
18947         * ext/ogg/gstoggmux.c: (gst_ogg_mux_init),
18948         (gst_ogg_mux_next_buffer), (gst_ogg_mux_buffer_from_page),
18949         (gst_ogg_mux_push_page), (gst_ogg_mux_get_headers),
18950         (gst_ogg_mux_set_header_on_caps), (gst_ogg_mux_send_headers),
18951         (gst_ogg_mux_loop):
18952         Use stream caps to setup the initial pages in the ogg stream.
18953         Correctly set the streamheader caps on the srcpad.
18954
18955 2004-06-09  Thomas Vander Stichele  <thomas at apestaart dot org>
18956
18957         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps_list),
18958         (gst_v4lsrc_get_fps), (gst_v4lsrc_srcconnect),
18959         (gst_v4lsrc_getcaps):
18960         * sys/v4l/v4l_calls.c: (gst_v4l_set_window_properties),
18961         (gst_v4l_get_picture), (gst_v4l_get_audio), (gst_v4l_set_audio):
18962           add querying of fps lists for webcams.  Negotiating to a framerate
18963           now works.
18964
18965 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18966
18967         * ext/theora/theoraenc.c: (theora_buffer_from_packet),
18968         (theora_push_buffer), (theora_push_packet),
18969         (theora_set_header_on_caps), (theora_enc_chain):
18970           mark buffers and put on streamheader, raw theora streaming
18971           now works too, whee
18972
18973 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18974
18975         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
18976         (gst_tcp_gdp_read_caps):
18977           do a looping read for caps and GDP headers too
18978
18979 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18980
18981         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
18982         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_get):
18983           return EOS instead of NULL in _get
18984
18985 2004-06-08  Wim Taymans  <wim@fluendo.com>
18986
18987         * gst/tcp/gsttcp.c: (gst_tcp_gdp_read_header),
18988         (gst_tcp_gdp_read_caps), (gst_tcp_gdp_write_header),
18989         (gst_tcp_gdp_write_caps):
18990         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
18991         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
18992         (gst_tcpserversrc_gdp_read_header), (gst_tcpserversrc_get):
18993         Memory leak fixes
18994
18995 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
18996
18997         * ext/vorbis/Makefile.am:
18998         * ext/vorbis/vorbis.c: (plugin_init):
18999         * ext/vorbis/vorbisparse.c: (gst_vorbis_parse_base_init),
19000         (gst_vorbis_parse_class_init), (gst_vorbis_parse_init),
19001         (vorbis_parse_set_header_on_caps), (vorbis_parse_chain),
19002         (vorbis_parse_change_state):
19003         * ext/vorbis/vorbisparse.h:
19004           adding a vorbisparse element that marks the buffers, streaming
19005           raw vorbis using GDP now works, whee
19006
19007 2004-06-08  Wim Taymans  <wim@fluendo.com>
19008
19009         * ext/jpeg/Makefile.am:
19010         * ext/jpeg/README:
19011         * ext/jpeg/gstjpeg.c: (plugin_init):
19012         * ext/jpeg/gstsmokedec.c: (gst_smokedec_get_type),
19013         (gst_smokedec_base_init), (gst_smokedec_class_init),
19014         (gst_smokedec_init), (gst_smokedec_link), (gst_smokedec_chain):
19015         * ext/jpeg/gstsmokedec.h:
19016         * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_get_type),
19017         (gst_smokeenc_base_init), (gst_smokeenc_class_init),
19018         (gst_smokeenc_init), (gst_smokeenc_getcaps), (gst_smokeenc_link),
19019         (gst_smokeenc_resync), (gst_smokeenc_chain),
19020         (gst_smokeenc_set_property), (gst_smokeenc_get_property):
19021         * ext/jpeg/gstsmokeenc.h:
19022         * ext/jpeg/smokecodec.c: (smokecodec_init_destination),
19023         (smokecodec_flush_destination), (smokecodec_term_destination),
19024         (smokecodec_init_source), (smokecodec_fill_input_buffer),
19025         (smokecodec_skip_input_data), (smokecodec_resync_to_restart),
19026         (smokecodec_term_source), (smokecodec_encode_new),
19027         (smokecodec_decode_new), (smokecodec_info_free),
19028         (smokecodec_set_quality), (smokecodec_get_quality),
19029         (smokecodec_set_threshold), (smokecodec_get_threshold),
19030         (smokecodec_set_bitrate), (smokecodec_get_bitrate),
19031         (find_best_size), (abs_diff), (put), (smokecodec_encode),
19032         (smokecodec_parse_header), (smokecodec_decode):
19033         * ext/jpeg/smokecodec.h:
19034         Added a new simple jpeg based codec
19035
19036 2004-06-08  Wim Taymans  <wim@fluendo.com>
19037
19038         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
19039         (gst_multipart_mux_loop):
19040         Fix memory leak
19041
19042 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19043
19044         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_get):
19045         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_client_remove),
19046         (gst_tcpserversink_handle_client_read), (gst_tcp_buffer_write),
19047         (gst_tcpserversink_handle_client_write), (gst_tcpserversink_chain),
19048         (gst_tcpserversink_init_send), (gst_tcpserversink_close):
19049         * gst/tcp/gsttcpserversink.h:
19050           take streamheader into account
19051
19052 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19053
19054         * gst/level/Makefile.am:
19055         * gst/level/gstlevel.c: (gst_level_class_init):
19056           clean up marshal generation
19057
19058 2004-06-08  Thomas Vander Stichele  <thomas at apestaart dot org>
19059
19060         * gst/tcp/Makefile.am:
19061         * gst/tcp/gsttcpclientsink.c: (gst_tcpclientsink_get_type),
19062         (gst_tcpclientsink_class_init), (gst_tcpclientsink_init),
19063         (gst_tcpclientsink_set_property), (gst_tcpclientsink_get_property):
19064         * gst/tcp/gsttcpclientsrc.c: (gst_tcpclientsrc_class_init),
19065         (gst_tcpclientsrc_init), (gst_tcpclientsrc_set_property),
19066         (gst_tcpclientsrc_get_property):
19067         * gst/tcp/gsttcpserversink.c: (gst_tcpserversink_class_init),
19068         (gst_tcpserversink_init), (gst_tcpserversink_handle_server_read),
19069         (gst_tcpserversink_handle_client_read),
19070         (gst_tcpserversink_handle_client_write),
19071         (gst_tcpserversink_set_property), (gst_tcpserversink_get_property):
19072         * gst/tcp/gsttcpserversink.h:
19073           add signals client-added and client-removed
19074         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_class_init),
19075         (gst_tcpserversrc_init), (gst_tcpserversrc_set_property),
19076         (gst_tcpserversrc_get_property):
19077         uniformized, change default protocol to NONE
19078         * gst/tcp/gsttcp-marshal.list: added
19079 2004-06-07  Benjamin Otte  <otte@gnome.org>
19080
19081         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
19082           handle discont events if they happen before caps nego
19083
19084 2004-06-07  Wim Taymans  <wim@fluendo.com>
19085
19086         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
19087         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
19088         (gst_multipart_demux_plugin_init):
19089         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
19090         (gst_multipart_mux_init), (gst_multipart_mux_loop),
19091         (gst_multipart_mux_change_state):
19092         Small updates, fix a memleak
19093
19094 2004-06-07  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
19095
19096         * configure.ac: OSS portability
19097         * ext/arts/gst_arts.c: idem
19098         * sys/oss/gstosselement.c: idem
19099         * sys/oss/gstossmixer.c: idem
19100         * sys/oss/gstosssink.c: idem
19101         * sys/oss/gstosssrc.c: idem
19102         * sys/oss/oss_probe.c: idem
19103           - check for soundcard.h in different places for some BSD
19104
19105 2004-06-07  Jan Schmidt <thaytan@mad.scientist.com>
19106
19107         * AUTHORS:
19108         Add me to the authors file
19109         * configure.ac:
19110         Increase the libdv requirement to >= version 0.100
19111         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
19112         (gst_dvdec_src_query), (gst_dvdec_handle_sink_event),
19113         (gst_dvdec_push), (gst_dvdec_loop), (gst_dvdec_change_state):
19114         * ext/dv/gstdvdec.h:
19115         Add support for the new_media flag when sending DISCONT events
19116         Make the querying work when video pad is not linked
19117
19118 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
19119
19120         reviewed by Benjamin Otte  <otte@gnome.org>
19121
19122         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init):
19123           create a NULL-initialized array of pads, so we don't think they
19124           exist already. (fixes #143130)
19125
19126 2004-06-07  Benjamin Otte  <otte@gnome.org>
19127
19128         * gst/mixmatrix/mixmatrix.c: (gst_mixmatrix_init),
19129         (mixmatrix_resize), (gst_mixmatrix_set_all_caps),
19130         (gst_mixmatrix_request_new_pad), (gst_mixmatrix_loop):
19131           don't use // coments
19132
19133 2004-06-07  Benjamin Otte  <otte@gnome.org>
19134
19135         * ext/alsa/gstalsa.c: (gst_alsa_samples_to_timestamp):
19136           cast to GstClockTime to get higher granularity
19137         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
19138           use gst_element_set_time_delay to get the exact time
19139         * ext/mad/gstmad.c: (gst_mad_chain):
19140           use the negotiated rate instead of the current frame's rate which
19141           might be wrong because of bit errors. This avoids emitting totally
19142           bogus timestamps and screwing sync.
19143         (fixes #143454)
19144
19145 2004-06-07  Tim-Philipp M??ller  <t.i.m@zen.co.uk>
19146
19147         reviewed by Benjamin Otte  <otte@gnome.org>
19148
19149         * gst/adder/gstadder.c: (gst_adder_loop):
19150           properly error out when no negotiation has happened yet. (fixes
19151           #143032)
19152
19153 2004-06-06  Benjamin Otte  <otte@gnome.org>
19154
19155         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
19156           forward correctly transformed offset in discont events. Based on
19157           patch by Arwed v. Merkatz. (fixes #142851)
19158
19159 2004-06-06  David Schleef  <ds@schleef.org>
19160
19161         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: that's
19162         G_HAVE_GNUC_VARARGS, not G_HAVE_GNU_VARARGS.  Should fix compile
19163         problems on several systems.
19164
19165 2004-06-06  Benjamin Otte  <otte@gnome.org>
19166
19167         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init):
19168           use explicit caps on the srcpad
19169         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19170           properly error out if caps couldn't be set (fixes #142764)
19171
19172 2004-06-06  Benjamin Otte  <otte@gnome.org>
19173
19174         * ext/alsa/gstalsa.c: (gst_alsa_probe_hw_params),
19175         (gst_alsa_set_hw_params), (gst_alsa_set_sw_params),
19176         (gst_alsa_start_audio):
19177           - don't call set_periods_integer anymore, it breaks the
19178           configuration randomly
19179           - call snd_pcm_hw_params_set_access directly instead of using masks
19180           - don't fail if the sw_params can't be set, just use the default
19181           params and hope it works. Alsalib has weird issues when you touch
19182           sw_params and does no proper error reporting about what failed.
19183         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
19184         (gst_alsa_close_audio):
19185           make our alsa debugging go via gst debugging and not conditionally
19186           defined
19187         * ext/alsa/gstalsa.h:
19188           add ALSA_DEBUG_FLUSH macro
19189         * ext/alsa/gstalsaplugin.c: (gst_alsa_error_wrapper),
19190         (plugin_init):
19191           wrap alsa errors to be printed via the gst debugging system and not
19192           spammed to stderr
19193
19194 2004-06-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19195
19196         * gst/qtdemux/qtdemux.c: (gst_qtdemux_init),
19197         (gst_qtdemux_handle_src_query), (gst_qtdemux_handle_src_event),
19198         (gst_qtdemux_handle_sink_event), (gst_qtdemux_change_state),
19199         (gst_qtdemux_loop_header), (qtdemux_dump_mvhd),
19200         (qtdemux_parse_trak):
19201         * gst/qtdemux/qtdemux.h:
19202           Bitch. Also known as seeking, querying & co.
19203         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
19204         (gst_osssink_change_state):
19205         * sys/oss/gstosssink.h:
19206           Resyncing is for weenies, this hack is no longer needed and was
19207           broken anyway (since it - unintendedly - always leaves resync to
19208           TRUE).
19209
19210 2004-06-05  Andrew Turner <zxombie@hotpop.com>
19211
19212         * gst/tcp/gsttcp.c: portability (Solaris 10/FreeBSD)
19213         * gst/tcp/gsttcpclientsrc.h: idem
19214           - define MSG_NOSIGNAL if not done
19215           - include unistd.h for off_t
19216           (fixes #143749)
19217
19218 2004-06-05  Benjamin Otte  <otte@gnome.org>
19219
19220         * configure.ac:
19221         * ext/kio/Makefile.am:
19222           check for qt's moc preprocessor explicitly and use it
19223
19224 2004-06-03  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19225
19226         * gst/tcp/gsttcp.c: (gst_tcp_socket_write):
19227           don't get a signal for EPIPE on socket writes
19228           (somebody check if this works on other platforms)
19229
19230 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
19231
19232         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_get_type):
19233         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
19234           check error condition on available samples correctly
19235
19236 2004-06-02  Thomas Vander Stichele  <thomas at apestaart dot org>
19237
19238         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_time):
19239           avoid a segfault
19240         * gst/tcp/gsttcp.c: (gst_tcp_socket_write), (gst_tcp_socket_read),
19241         (gst_tcp_gdp_read_header), (gst_tcp_gdp_read_caps):
19242         * gst/tcp/gsttcpserversrc.c: (gst_tcpserversrc_gdp_read_caps),
19243         (gst_tcpserversrc_gdp_read_header):
19244          use ssize_t over size_t since the former is signed and thus the
19245          check for error codes can work
19246
19247 2004-06-02  Wim Taymans  <wim@fluendo.com>
19248
19249         reviewed by: Johan
19250
19251         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
19252         (gst_multipart_mux_loop):
19253         Oops
19254
19255 2004-06-02  Wim Taymans  <wim@fluendo.com>
19256
19257         * gst/multipart/multipartmux.c: (gst_multipart_mux_class_init),
19258         (gst_multipart_mux_init), (gst_multipart_mux_loop),
19259         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
19260         (gst_multipart_mux_change_state):
19261         Added configurable boundary specifier, added the value as a
19262         caps field as well.
19263
19264 2004-06-02  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19265
19266         * gst/tcp/gsttcp.c:
19267         * gst/tcp/gsttcpclientsrc.c:
19268         * gst/tcp/gsttcpclientsrc.h:
19269         * gst/tcp/gsttcpserversrc.c:
19270           - portability fix, to compile on OSX
19271             (fixes #143146)
19272
19273         * sys/osxaudio/gstosxaudioelement.c:
19274         * sys/osxaudio/gstosxaudiosink.c:
19275         * sys/osxaudio/gstosxaudiosrc.c:
19276           - compilation warnings on OSX
19277             (fixes #143153)
19278
19279 2004-06-02  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19280
19281         * ext/vorbis/vorbisdec.c : sign warning fixes
19282
19283         * gst-libs/gst/mixer/mixertrack.c :
19284           do no use defines which are glib 2.4 specific
19285
19286 2004-06-01  Christophe Fergeau  <teuf@gnome.org>
19287
19288         * ext/flac/gstflactag.c: strip ending framing bit from vorbiscomment
19289           buffer since libflac doesn't expect it (reports a sync error when
19290           it encounters that)
19291
19292
19293 2004-06-01  Owen Fraser-Green  <owen@discobabe.net>
19294
19295         * gst-libs/gst/mixer/mixertrack.h: Changed struct syntax
19296         * gst-libs/gst/mixer/mixertrack.c:
19297         (gst_mixer_track_get_property), (get_mixer_track_init),
19298         (get_mixer_track_get_property): Added property accessors
19299         * gst-libs/gst/mixer/mixeroptions.h: Changed struct syntax
19300         * gst-libs/gst/mixer/mixeroptions.c:
19301         (gst_mixer_options_get_values): Added
19302         * gst-libs/gst/mixer/mixer.h: Changed GstMixerClass syntax
19303         * gst-libs/gst/mixer/mixer.c: Fixed comment
19304
19305
19306 2004-06-01  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19307
19308         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
19309           improve error messages on open
19310
19311
19312 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19313
19314         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
19315           check if v4l-conf is in path
19316
19317 2004-06-01  Thomas Vander Stichele  <thomas at apestaart dot org>
19318
19319         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
19320           change assert to a more readable error message
19321
19322 2004-05-31  Stephane Loeuillet  <stephane.loeuillet@tiscali.fr>
19323
19324         * gst-libs/gst/tuner/tunerchannel.h:
19325           - add a freq_multiplicator field to make the conversion
19326             between internal frequency unit and Hz
19327         * sys/v4l/gstv4lelement.c:
19328         * sys/v4l2/gstv4l2element.c:
19329           - change default video device to /dev/video0
19330         * sys/v4l/v4l_calls.c:
19331         * sys/v4l2/v4l2_calls.c:
19332           - we only expose frequency to the user in Hz instead of
19333             bastard v4lX unit (either 62.5kHz or 62.5Hz)
19334
19335 2004-05-31  Jan Schmidt  <thaytan@mad.scientist.com>
19336         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
19337           Initialise b_o_s and e_o_s variables
19338         * gst-libs/gst/riff/riff-media.c:
19339         (gst_riff_create_video_caps_with_data):
19340           Add some unusual fourcc's from mplayer avi's
19341         * gst/multipart/multipartmux.c: (gst_multipart_mux_plugin_init):
19342           Make the muxer have rank GST_RANK_NONE, so it doesn't mess up
19343           autoplugging.
19344
19345 2004-05-28  Wim Taymans  <wim@fluendo.com>
19346
19347         * configure.ac:
19348         * gst/alpha/Makefile.am:
19349         * gst/alpha/gstalpha.c: (gst_alpha_method_get_type),
19350         (gst_alpha_get_type), (gst_alpha_base_init),
19351         (gst_alpha_class_init), (gst_alpha_init), (gst_alpha_set_property),
19352         (gst_alpha_get_property), (gst_alpha_sink_link), (gst_alpha_add),
19353         (gst_alpha_chroma_key), (gst_alpha_chain),
19354         (gst_alpha_change_state), (plugin_init):
19355         A plugin to add an alpha channel to I420 video. Can optionally do
19356         chroma keying.
19357         * gst/multipart/Makefile.am:
19358         * gst/multipart/multipart.c: (plugin_init):
19359         * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init),
19360         (gst_multipart_demux_class_init), (gst_multipart_demux_init),
19361         (gst_multipart_demux_finalize), (gst_multipart_demux_handle_event),
19362         (gst_multipart_find_pad_by_mime), (gst_multipart_demux_chain),
19363         (gst_multipart_demux_change_state),
19364         (gst_multipart_demux_plugin_init):
19365         * gst/multipart/multipartmux.c: (gst_multipart_mux_get_type),
19366         (gst_multipart_mux_base_init), (gst_multipart_mux_class_init),
19367         (gst_multipart_mux_get_sink_event_masks), (gst_multipart_mux_init),
19368         (gst_multipart_mux_sinkconnect), (gst_multipart_mux_pad_link),
19369         (gst_multipart_mux_pad_unlink),
19370         (gst_multipart_mux_request_new_pad),
19371         (gst_multipart_mux_handle_src_event),
19372         (gst_multipart_mux_next_buffer), (gst_multipart_mux_compare_pads),
19373         (gst_multipart_mux_queue_pads), (gst_multipart_mux_loop),
19374         (gst_multipart_mux_get_property), (gst_multipart_mux_set_property),
19375         (gst_multipart_mux_change_state), (gst_multipart_mux_plugin_init):
19376         A Multipart demuxer/muxer. Not sure if it violates specs. Used to
19377         send multipart jpeg images to a browser.
19378         * gst/videobox/Makefile.am:
19379         * gst/videobox/README:
19380         * gst/videobox/gstvideobox.c: (gst_video_box_fill_get_type),
19381         (gst_video_box_get_type), (gst_video_box_base_init),
19382         (gst_video_box_class_init), (gst_video_box_init),
19383         (gst_video_box_set_property), (gst_video_box_get_property),
19384         (gst_video_box_sink_link), (gst_video_box_i420),
19385         (gst_video_box_ayuv), (gst_video_box_chain),
19386         (gst_video_box_change_state), (plugin_init):
19387         Crops or adds borders around an image. can do alpha channel
19388         borders as well.
19389         * gst/videomixer/Makefile.am:
19390         * gst/videomixer/README:
19391         * gst/videomixer/videomixer.c: (gst_videomixer_pad_get_type),
19392         (gst_videomixer_pad_base_init), (gst_videomixer_pad_class_init),
19393         (gst_videomixer_pad_get_sink_event_masks),
19394         (gst_videomixer_pad_get_property),
19395         (gst_videomixer_pad_set_property),
19396         (gst_videomixer_pad_sinkconnect), (gst_videomixer_pad_link),
19397         (gst_videomixer_pad_unlink), (gst_videomixer_pad_init),
19398         (gst_video_mixer_background_get_type), (gst_videomixer_get_type),
19399         (gst_videomixer_base_init), (gst_videomixer_class_init),
19400         (gst_videomixer_init), (gst_videomixer_request_new_pad),
19401         (gst_videomixer_handle_src_event),
19402         (gst_videomixer_blend_ayuv_i420), (gst_videomixer_fill_checker),
19403         (gst_videomixer_fill_color), (gst_videomixer_fill_queues),
19404         (gst_videomixer_blend_buffers), (gst_videomixer_update_queues),
19405         (gst_videomixer_loop), (gst_videomixer_get_property),
19406         (gst_videomixer_set_property), (gst_videomixer_change_state),
19407         (plugin_init):
19408         Generic video mixer plugin, can handle multiple inputs all with
19409         different framerates and video sizes. Is fully alpha channel
19410         aware.
19411
19412 2004-05-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19413
19414         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
19415           Select first track as master track. Not sure how else to handle
19416           that...
19417         * ext/ogg/gstoggmux.c: (gst_ogg_mux_next_buffer):
19418           Discard discont events. Should fix #142962.
19419
19420 2004-05-26  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19421
19422         * ext/alsa/Makefile.am:
19423         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init),
19424         (gst_alsa_mixer_build_list), (gst_alsa_mixer_get_volume),
19425         (gst_alsa_mixer_set_volume), (gst_alsa_mixer_set_mute),
19426         (gst_alsa_mixer_set_record), (gst_alsa_mixer_set_option),
19427         (gst_alsa_mixer_get_option):
19428         * ext/alsa/gstalsamixer.h:
19429         * ext/alsa/gstalsamixeroptions.c:
19430         (gst_alsa_mixer_options_get_type),
19431         (gst_alsa_mixer_options_class_init), (gst_alsa_mixer_options_init),
19432         (gst_alsa_mixer_options_new):
19433         * ext/alsa/gstalsamixeroptions.h:
19434         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_new):
19435         * ext/alsa/gstalsamixertrack.h:
19436           Add enumerations (as GstMixerOptions). Make correct distinction
19437           between input/output tracks. Add capture/playback private flag.
19438           Use flag to decide on whether to set capture or playback volumes
19439           or switches. Use playback and record switches.
19440         * gst-libs/gst/mixer/Makefile.am:
19441         * gst-libs/gst/mixer/mixer-marshal.list:
19442         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init),
19443         (gst_mixer_set_option), (gst_mixer_get_option),
19444         (gst_mixer_mute_toggled), (gst_mixer_record_toggled),
19445         (gst_mixer_volume_changed), (gst_mixer_option_changed):
19446         * gst-libs/gst/mixer/mixer.h:
19447         * gst-libs/gst/mixer/mixeroptions.c: (gst_mixer_options_get_type),
19448         (gst_mixer_options_class_init), (gst_mixer_options_init),
19449         (gst_mixer_options_dispose):
19450         * gst-libs/gst/mixer/mixeroptions.h:
19451           Add GstMixerOptions.
19452         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
19453           Rename Audio Mixer to OSS Mixer (similar to Alsa Mixer). Fix
19454           broken device detection on computers with multiple OSS sound
19455           cards.
19456
19457 2004-05-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19458
19459         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
19460           fixate nicely even when the peer is not negotiating
19461
19462 2004-05-25  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19463
19464         * gst/audioconvert/gstaudioconvert.c:
19465         (gst_audio_convert_parse_caps):
19466           make sure we don't allow depth > width
19467         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_fixate):
19468           fixate endianness to G_BYTE_ORDER as default
19469         * gst/audioscale/gstaudioscale.c:
19470           we don't handle another endianness as host-endianness
19471
19472 2004-05-25  David Schleef  <ds@schleef.org>
19473
19474         * gst/ffmpegcolorspace/mem.c:  malloc() is in stdlib.h, not malloc.h
19475
19476 2004-05-24  Benjamin Otte  <otte@gnome.org>
19477
19478         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_sinkconnect),
19479         (gst_oggvorbisenc_setup):
19480           properly fail when we can't setup the vorbis encoder due to
19481           unsupported settings
19482         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_sinkconnect),
19483         (gst_vorbisenc_setup):
19484           same
19485         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
19486           fix case where warnings occured when one pad was unlinked while the
19487           other's link function was called
19488
19489 2004-05-24  Thomas Vander Stichele  <thomas at apestaart dot org>
19490
19491         * gst/tcp/Makefile.am:
19492           use GST_ENABLE_NEW
19493
19494 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19495
19496         * gst-libs/gst/resample/private.h:
19497           don't use optimizations that are #if 0'ed
19498
19499 2004-05-24  Wim Taymans  <wim@fluendo.com>
19500
19501         * gst/avi/gstavidemux.c: (gst_avi_demux_handle_src_query):
19502         Fix potential division by zero error and hopefully get
19503         the position query right to get correct timestamps on avi
19504         audio.
19505
19506 2004-05-24  Wim Taymans  <wim@fluendo.com>
19507
19508         * gst/videoscale/videoscale.c: (gst_videoscale_scale_nearest),
19509         (gst_videoscale_scale_nearest_str2),
19510         (gst_videoscale_scale_nearest_str4),
19511         (gst_videoscale_scale_nearest_32bit),
19512         (gst_videoscale_scale_nearest_24bit),
19513         (gst_videoscale_scale_nearest_16bit):
19514         Fix the scaling algorithm and avoid a buffer overflow.
19515         removed the while loop in the scaling function as it
19516         was used for point sampling only.
19517
19518 2004-05-24  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19519
19520         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
19521         (gst_id3_tag_class_init), (gst_id3_tag_init),
19522         (gst_id3_tag_set_property), (gst_id3_tag_get_tag_to_render),
19523         (gst_id3_tag_handle_event), (gst_id3_tag_do_caps_nego),
19524         (gst_id3_tag_send_tag_event):
19525           lots of fixes to make id3mux work and id3demux work correctly
19526
19527 2004-05-24  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19528
19529         * ext/Makefile.am:
19530           add rules to build shout2send (was removed by accident
19531           when this module was no more marked experimental/broken)
19532
19533 2004-05-24  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
19534
19535         * ext/shout2/gstshout2.c:
19536         * ext/shout2/gstshout2.h:
19537           adding a "connection problem" signal to shout2send
19538           (fixes #142954)
19539
19540 2004-05-21  Thomas Vander Stichele  <thomas at apestaart dot org>
19541
19542         * ext/kio/kioreceiver.cpp:
19543         * ext/kio/kioreceiver.h:
19544           fix sign comparison issues
19545
19546 2004-05-21  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19547
19548         * gst/cdxaparse/gstcdxaparse.c:
19549         * gst/cdxaparse/gstcdxaparse.h:
19550           some renaming
19551           add some checks/sanity
19552           prepare for seek addition
19553
19554         * sys/sunaudio/gstsunaudio.c:
19555           remove exported dupe init function
19556
19557 2004-05-21  Jan Schmidt  <thaytan@mad.scientist.com>
19558
19559         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_get_formats),
19560         (gst_dvdec_src_convert), (gst_dvdec_sink_convert):
19561           Fix format conversion and position querying.
19562         * gst/debug/progressreport.c: (gst_progressreport_report):
19563           Don't output a bogus total value that we didn't query.
19564         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
19565           Always set XV_AUTOPAINT_COLORKEY to true. Fixes xvimagesink showing
19566           only a blank window after xine has been used.
19567
19568 2004-05-21  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
19569
19570         * m4/as-arts.m4:
19571           sync with upstream version to fix test on FC2
19572           readd with -ko to preserve Id header
19573
19574 2004-05-20  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19575
19576         * configure.ac:
19577           test for FIONREAD ioctl in sys/filio.h for Solaris compat.
19578         * gst/tcp/gsttcpclientsrc.c: idem
19579         * gst/tcp/gsttcpserversink.c: idem
19580         * gst/tcp/gsttcpserversrc.c: idem
19581         * m4/gst-fionread.m4: idem
19582
19583         * sys/sunaudio/gstsunaudio.c: change category to Sink/Audio
19584
19585         * configure.ac: enable speex plugin for speex 1.1.5+
19586         * ext/speex/gstspeexenc.c: fix cast warning
19587
19588         * ext/esd/README: fix typo
19589
19590 2004-05-20  David Schleef  <ds@schleef.org>
19591
19592         * configure.ac: Minor cosmetic change to convince the buildbot to
19593         reautogen.
19594         * sys/sunaudio/gstsunaudio.c: (gst_sunaudiosink_class_init),
19595         (gst_sunaudiosink_init), (gst_sunaudiosink_getcaps),
19596         (gst_sunaudiosink_pad_link), (gst_sunaudiosink_chain),
19597         (gst_sunaudiosink_setparams), (gst_sunaudiosink_open),
19598         (gst_sunaudiosink_close), (gst_sunaudiosink_change_state),
19599         (gst_sunaudiosink_set_property), (gst_sunaudiosink_get_property):
19600         More hacking.  Plays audio now.
19601
19602 2004-05-20  David Schleef  <ds@schleef.org>
19603
19604         * configure.ac:
19605         * sys/Makefile.am:
19606
19607 2004-05-20  David Schleef  <ds@schleef.org>
19608
19609         * sys/osxaudio/Makefile.am:  New OS X audio plugin by Zaheer Abbas Merali
19610         * sys/osxaudio/gstosxaudio.c:
19611         * sys/osxaudio/gstosxaudioelement.c:
19612         * sys/osxaudio/gstosxaudioelement.h:
19613         * sys/osxaudio/gstosxaudiosink.c:
19614         * sys/osxaudio/gstosxaudiosink.h:
19615         * sys/osxaudio/gstosxaudiosrc.c:
19616         * sys/osxaudio/gstosxaudiosrc.h:
19617
19618 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19619
19620         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_set_header_on_caps),
19621         (gst_vorbisenc_chain):
19622           put the codec headers on the caps as streamheader as well as
19623           pushing them out
19624
19625 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19626
19627         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
19628         (gst_vorbisenc_buffer_from_packet), (gst_vorbisenc_push_buffer),
19629         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain):
19630         split up push_packet into two functions
19631
19632 2004-05-20  Thomas Vander Stichele  <thomas at apestaart dot org>
19633
19634         * gst/tcp/.cvsignore:
19635           ignore enums
19636         * gst/tcp/Makefile.am:
19637         * gst/tcp/README:
19638         * gst/tcp/gsttcp.c:
19639         * gst/tcp/gsttcp.h:
19640         * gst/tcp/gsttcpclientsink.c:
19641         * gst/tcp/gsttcpclientsink.h:
19642         * gst/tcp/gsttcpclientsrc.c:
19643         * gst/tcp/gsttcpclientsrc.h:
19644         * gst/tcp/gsttcpplugin.c:
19645         * gst/tcp/gsttcpserversink.c:
19646         * gst/tcp/gsttcpserversink.h:
19647         * gst/tcp/gsttcpserversrc.c:
19648         * gst/tcp/gsttcpserversrc.h:
19649           add new tcp elements
19650
19651 2004-05-19  Wim Taymans  <wim@fluendo.com>
19652
19653         * gst/law/mulaw-conversion.c: (mulaw_encode):
19654         Fix overflow bug in ulaw encoding.
19655
19656 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19657
19658         * ext/mad/gstmad.c: (gst_mad_handle_event):
19659           don't unref the event twice
19660
19661 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19662
19663         * configure.ac:
19664           remove -Wno-sign-compare
19665
19666 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19667
19668         * configure.ac:
19669           remove -DG_DISABLE_DEPRECATED. It's not usable without workarounds
19670           if you want to work against glib 2.2 and 2.4
19671
19672 2004-05-19  Thomas Vander Stichele  <thomas at apestaart dot org>
19673
19674         * gst/tcp/Makefile.am:
19675         * gst/tcp/gsttcp.c:
19676         * gst/tcp/gsttcp.h:
19677         * gst/tcp/gsttcpsink.h:
19678         * gst/tcp/gsttcpsrc.h:
19679           gsttcp -> gsttcpplugin + CVS surgery in preparation for tcp merge
19680
19681 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19682
19683         * gst/debug/tests.c: (md5_get_value):
19684           fix segfault on gst-inspect
19685
19686 2004-05-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19687
19688         * gst/debug/testplugin.c:
19689         * gst/debug/tests.c:
19690         * gst/debug/tests.h:
19691           add new extensible and configurable testing element. Current tests
19692           include buffer count, stream length, timestamp/duration matching and
19693           md5.
19694         * gst/debug/Makefile.am:
19695         * gst/debug/gstdebug.c: (plugin_init):
19696           add infrastructure for new element
19697
19698 2004-05-19  Johan Dahlin  <johan@gnome.org>
19699
19700         * ext/dv/gstdvdec.c (gst_dvdec_quality_get_type): Add proper
19701         ending of the array. Fixes gst-inspect segfault on ppc.
19702
19703 2004-05-19  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19704
19705         * ext/dirac/gstdiracdec.cc : change category to Codec/Decoder/Video
19706
19707         * m4/a52.m4 : don't fix a test that should fail with current a52dec lib
19708
19709 2004-05-18  David Schleef  <ds@schleef.org>
19710
19711         * gst/ffmpegcolorspace/imgconvert.c: (img_convert): Fixes for
19712         warnings (bugs, actually) noticed by gcc but not forte.
19713
19714 2004-05-18  David Schleef  <ds@schleef.org>
19715
19716         * sys/sunaudio/Makefile.am:
19717         * sys/sunaudio/gstsunaudio.c: New sunaudiosink
19718
19719 2004-05-18  David Schleef  <ds@schleef.org>
19720
19721         * gst/qtdemux/qtdemux.c: (gst_qtdemux_change_state),
19722         (gst_qtdemux_loop_header):  Patch from dcm@acm.org (David Moore)
19723         to allow qtdemux to use non-seekable streams. (bug #142272)
19724
19725 2004-05-18  David Schleef  <ds@schleef.org>
19726
19727         * gst-libs/gst/resample/resample.c: (gst_resample_sinc_ft_s16),
19728         (gst_resample_sinc_ft_float): Remove use of static temporary
19729         buffer.  This code was obviously not supposed to last long, but
19730         it's stuck in our ABI, so it required a little hack to make it
19731         ABI-compatible.  Fixes #142585.
19732         * gst-libs/gst/resample/resample.h: same.
19733
19734 2004-05-18  David Schleef  <ds@schleef.org>
19735
19736         * configure.ac: Add sunaudio
19737         * examples/Makefile.am: make gstplay depend on gconf
19738         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Remove c99-isms
19739         * gst/ffmpegcolorspace/imgconvert.c: (build_rgb_palette),
19740         (convert_table_lookup), (img_convert): remove c99-isms
19741         * gst/ffmpegcolorspace/imgconvert_template.h: make a constant
19742           unsigned, to fix a warning on Solaris
19743         * gst/mpeg1sys/systems.c: bcopy->memcpy
19744         * gst/rtjpeg/RTjpeg.c: (RTjpeg_yuvrgb8): bcopy->memcpy
19745         * sys/Makefile.am: Add sunaudio
19746
19747 2004-05-18  Wim Taymans  <wim@fluendo.com>
19748
19749         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type), (gst_ogg_mux_init),
19750         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_request_new_pad),
19751         (gst_ogg_mux_next_buffer), (gst_ogg_mux_push_page),
19752         (gst_ogg_mux_compare_pads), (gst_ogg_mux_queue_pads),
19753         (gst_ogg_mux_loop):
19754         Fix an ugly memleak where the muxer didn't flush enough ogg
19755         pages. This also resulted in badly muxed ogg files.
19756
19757 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19758
19759         * gst/asfdemux/asfheaders.c :
19760         * gst/asfdemux/asfheaders.h :
19761         * gst/asfdemux/gstasfdemux.c :
19762           - fix ASF_OBJ_PADDING guid
19763           - add 3 new object guids (language list, metadata,
19764             extended stream properties)
19765           - add a function to parse extended header objects
19766
19767 2004-05-18  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19768
19769         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
19770           remove leftover debugging g_print
19771
19772 2004-05-17  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19773
19774         * ext/mad/gstmad.c: (gst_mad_handle_event):
19775           Fix for when the first format in a discont event is not a
19776           byte-based one. Should fix #137710.
19777
19778 2004-05-18  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19779
19780         * m4/a52.m4 : fix compilation with -Wall -Werror
19781         * m4/libfame.m4 : idem
19782         * m4/libmikmod.m4 : idem
19783
19784 2004-05-17  Benjamin Otte  <otte@gnome.org>
19785
19786         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
19787           signal the new tags before giving up the reference
19788
19789 2004-05-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19790
19791         * ext/shout2/gstshout2.c:
19792           use application/ogg instead of application/x-ogg (patch by Patrick
19793           Guimond, fixes #142432)
19794         * sys/oss/gstosselement.c: (gst_osselement_reset),
19795         (gst_osselement_sync_parms):
19796           don't set fragment size unless specified (fixes #142493)
19797
19798 2004-05-17  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19799
19800         * configure.ac : fix compilation of v4l2src with "-Wall -Werror"
19801           fixes #142664
19802
19803 2004-05-17  Benjamin Otte  <otte@gnome.org>
19804
19805         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
19806           compute offsets correctly for internal buffers so timestamps are set
19807           correctly when we can't seek. Also handle cases where there are no
19808           offsets. (based on a patch by David Moore, fixes #142507)
19809
19810 2004-05-17  Benjamin Otte  <otte@gnome.org>
19811
19812         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19813           use correct variable when determining amount of data to skip so we
19814           don't skip into the void and segfault
19815
19816 2004-05-16  Benjamin Otte  <otte@gnome.org>
19817
19818         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
19819           Hi, I'm a memleak
19820
19821 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19822
19823         * gst/asfdemux/gstasfdemux.c:
19824           - fix a mem leak and always propagate tags
19825           - add WMV3 to known video codecs (but no decoder yet)
19826           - replace "surplus data" at end of audio header for what
19827             it is : codec specific data
19828           - fix a typo
19829
19830 2004-05-16  Arwed v. Merkatz  <v.merkatz@gmx.net>
19831
19832         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
19833
19834         * gst-libs/gst/audio/audioclock.c:
19835           Fix wrong return type (#142205).
19836
19837 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19838
19839         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_init):
19840           Ignore CRCs by default (fixes #142566).
19841
19842 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19843
19844         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open),
19845         (gst_alsa_mixer_close), (gst_alsa_mixer_supported),
19846         (gst_alsa_mixer_build_list), (gst_alsa_mixer_free_list),
19847         (gst_alsa_mixer_change_state), (gst_alsa_mixer_list_tracks),
19848         (gst_alsa_mixer_get_volume), (gst_alsa_mixer_set_volume),
19849         (gst_alsa_mixer_set_mute), (gst_alsa_mixer_set_record):
19850           Fix for cases where we fail to attach to a mixer.
19851
19852 2004-05-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
19853
19854         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek):
19855           Don't touch events after not owning them anymore.
19856         * gst/wavparse/gstwavparse.c: (gst_wavparse_base_init),
19857         (gst_wavparse_fmt), (gst_wavparse_other),
19858         (gst_wavparse_handle_seek), (gst_wavparse_loop),
19859         (gst_wavparse_pad_convert), (gst_wavparse_pad_query),
19860         (gst_wavparse_srcpad_event):
19861         * gst/wavparse/gstwavparse.h:
19862           Add seeking, fix querying.
19863
19864 2004-05-16  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19865
19866         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
19867           - process comments even if they don't end with \0\0
19868             g_convert would ignore them if present and works well without them
19869
19870 2004-05-16  Benjamin Otte  <otte@gnome.org>
19871
19872         * ext/alsa/gstalsa.c: (gst_alsa_caps), (gst_alsa_get_caps):
19873           simplify caps
19874
19875 2004-05-16  Benjamin Otte  <otte@gnome.org>
19876
19877         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
19878           don't write to memory we might not write to - g_convert does that
19879           for us anyway (fixes #142613)
19880         (gst_asf_demux_audio_caps):
19881           comment out gst_util_dump_mem
19882
19883 2004-05-16  Benjamin Otte  <otte@gnome.org>
19884
19885         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19886           compute correct expected timestamps after seek (broken since
19887           last commit)
19888         * ext/gdk_pixbuf/pixbufscale.c: (pixbufscale_init):
19889           rename element and debugging category to gdkpixbufscale
19890
19891 2004-05-16  Benjamin Otte  <otte@gnome.org>
19892
19893         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
19894           add error checking to snd_pcm_delay and remove duplicate call to
19895           snd_pcm_delay that caused issues (see inline code comments)
19896         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_time):
19897           make more readable and fix return value when snd_pcm_delay fails
19898         (fixes #142586)
19899
19900 2004-05-15  Jan Schmidt  <thaytan@mad.scientisti.com>
19901         * ext/gdk_pixbuf/pixbufscale.c: (gst_pixbufscale_method_get_type),
19902         (gst_pixbufscale_get_type), (gst_pixbufscale_base_init),
19903         (gst_pixbufscale_class_init), (gst_pixbufscale_getcaps),
19904         (gst_pixbufscale_link), (gst_pixbufscale_init),
19905         (gst_pixbufscale_handle_src_event), (pixbufscale_scale),
19906         (gst_pixbufscale_chain), (gst_pixbufscale_set_property),
19907         (gst_pixbufscale_get_property), (pixbufscale_init):
19908         * ext/gdk_pixbuf/pixbufscale.h:
19909         Add these files I forgot earlier
19910
19911 2004-05-15  Jan Schmidt  <thaytan@mad.scientist.com>
19912         * ext/gdk_pixbuf/Makefile.am:
19913         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
19914         * ext/gdk_pixbuf/gstgdkpixbuf.h:
19915         Add new pixbufscale element to scale RGB video
19916         using gdk_pixbuf, because gdk_pixbuf does BILINEAR
19917         and HYPER interpolation correctly.
19918         * ext/theora/theoraenc.c: (theora_enc_chain),
19919         Discard buffer and return if explicit caps could not be set
19920         (theora_enc_get_property):
19921         Make _get return kbps for the bitrate consistent with
19922         the _set function.
19923
19924
19925 2004-05-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19926
19927         * ext/libvisual/visual.c: (gst_visual_chain):
19928           add missing visual_audio_analyze
19929
19930 2004-05-14  David Schleef  <ds@schleef.org>
19931
19932         * ext/esd/esdsink.c: (gst_esdsink_chain): Fix crash when ESD
19933         is killed while we're playing.
19934         * gst/qtdemux/qtdemux.c: (qtdemux_parse): call
19935         gst_element_no_more_pads().
19936
19937 2004-05-14  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19938
19939         * gst-libs/gst/riff/riff-read.c :
19940           - fix INFO tag extraction in RIFF/AVI files
19941             because gst_event_unref (event) also freed taglist
19942           - avoid a mem leak
19943
19944 2004-05-13  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
19945
19946         * ext/mad/gstid3tag.c : move from "Codec/(Dem/M)uxer" to "Codec/(Dem/M)uxer/Audio"
19947         * gst/wavenc/gstwavenc.c : move from "Codec/Encoder/Audio" to "Codec/Muxer/Audio"
19948
19949         * gst/auparse/gstauparse.c :
19950           - add code (commented for now) to support audio/x-adpcm on src pad
19951             (we have no decoder for those layout yet)
19952
19953         * gst/cdxaparse/gstcdxaparse.c :
19954         * gst/cdxaparse/gstcdxaparse.h :
19955           - partial rewrite using RiffRead (ripped iain's wavparse code)
19956
19957         * gst/rtp/gstrtpL16enc.c : typo
19958         * gst/rtp/gstrtpgsmenc.c : typo
19959
19960 2004-05-13  Benjamin Otte  <otte@gnome.org>
19961
19962         * configure.ac:
19963           check for exact version of libvisual, it's not supposed to be
19964           API/ABI stable yet
19965
19966 2004-05-13  Benjamin Otte  <in7y118@public.uni-hamburg.de>
19967
19968         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_push):
19969           signal no-more-pads
19970
19971 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
19972
19973         * ext/dv/gstdvdec.c: (gst_dvdec_src_convert)
19974         Report which format was used for GST_FORMAT_DEFAULT
19975         * gst/debug/Makefile.am:
19976         * gst/debug/gstdebug.c: (plugin_init):
19977         * gst/debug/progressreport.c: (gst_progressreport_base_init),
19978         (gst_progressreport_class_init), (gst_progressreport_init),
19979         (gst_progressreport_report), (gst_progressreport_set_property),
19980         (gst_progressreport_get_property), (gst_progressreport_chain),
19981         (gst_progressreport_plugin_init):
19982         Add progressreport element for testing.
19983
19984 2004-05-13  Thomas Vander Stichele  <thomas at apestaart dot org>
19985
19986         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_change_state):
19987         * sys/v4l/gstv4lsrc.h:
19988         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
19989         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
19990         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init),
19991         (gst_v4lsrc_grab_frame):
19992           add more debugging
19993           send a discont at start
19994
19995 2004-05-12  Colin Walters  <walters@redhat.com>
19996
19997         * gst/asfdemux/gstasfdemux.c (gst_asf_demux_process_segment): Avoid
19998         inflooping if we can't find a chunk.  Or in other words, don't blow
19999         chunks if we don't have a chunk to blow.
20000
20001 2004-05-13  Jan Schmidt  <thaytan@mad.scientist.com>
20002         * ext/audiofile/gstafsrc.c: (gst_afsrc_get):
20003         Remove old debug output
20004         * ext/dv/gstdvdec.c: (gst_dvdec_quality_get_type),
20005         (gst_dvdec_class_init), (gst_dvdec_loop), (gst_dvdec_change_state),
20006         (gst_dvdec_set_property), (gst_dvdec_get_property):
20007         Change the quality setting to an enum, so it works from gst-launch
20008         Don't renegotiate a non-linked pad. Allows audio only decoding.
20009         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_getcaps),
20010         (gst_deinterlace_link), (gst_deinterlace_init):
20011         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
20012         (gst_videodrop_link):
20013         Some caps negotiation fixes
20014
20015 2004-05-12  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20016
20017         * ext/tarkin/gsttarkin.c :
20018           - Change RANK from NONE to PRIMARY
20019         * ext/gdk_pixbuf/gstgdkpixbuf.c :
20020           - Change RANK from NONE to MARGINAL
20021         * ext/divx/gstdivxenc.c :
20022           - Change RANK from PRIMARY to NONE (encoder/spider issue)
20023
20024 2004-05-12  Thomas Vander Stichele  <thomas at apestaart dot org>
20025
20026         * ext/vorbis/vorbisenc.c: (vorbis_granule_time_copy),
20027         (gst_vorbisenc_push_packet):
20028           copy a function that was added between 1.0 and 1.0.1 until we
20029           depend on worthwhile features of post-1.0
20030
20031 2004-05-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20032
20033         * configure.ac:
20034           enable shout2 by default
20035         * ext/shout2/gstshout2.c: (gst_shout2send_protocol_get_type),
20036         (gst_shout2send_base_init), (gst_shout2send_init),
20037         (gst_shout2send_connect), (gst_shout2send_change_state):
20038         * ext/shout2/gstshout2.h:
20039           make this work again. Based on a patch by Zaheer Abbas Merali (fixes
20040           #142262)
20041         * ext/theora/theora.c: (plugin_init):
20042           don't set rank on encoders
20043
20044 2004-05-11  Jeremy Simon  <jesimon@libertysurf.fr>
20045
20046         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
20047           Use codec_data property instead of flag1 and flag2 for wma
20048
20049 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20050
20051         * gst/cdxaparse/gstcdxaparse.c :
20052           - Add mpegversion to CAPS to make it link
20053           - Rank is as GST_RANK_SECONDARY instead of NONE
20054         * gst/auparse/gstauparse.c :
20055           - Document all audio encoding we can encounter from Solaris 9
20056             headers and libsndfile information.
20057           - Increase max. rate from 48000 to 192000 (to match other elements)
20058           - Don't try to play junk data between header and samples
20059
20060 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20061
20062         * ext/libvisual/visual.c: (gst_visual_getcaps):
20063           use the right caps depending on endianness (I hope)
20064         * ext/ogg/gstoggmux.c: (gst_ogg_mux_plugin_init):
20065           use GST_RANK_NONE for all non-decoding elements or spider gets
20066           mighty confused
20067
20068 2004-05-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20069
20070         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_comment):
20071           Fix some odd cases and fix BE metadata parsing of unicode16 text.
20072
20073 2004-05-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20074
20075         * gst/switch/gstswitch.c: (gst_switch_release_pad),
20076         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
20077         (gst_switch_loop), (gst_switch_get_type):
20078           whoever that was: DO NOT IMPORT PRIVATE SYMBOLS THAT ARE NOT IN
20079           HEADERS. Had to be said.
20080
20081 2004-05-10  David Schleef  <ds@schleef.org>
20082
20083         * configure.ac: Add prototype Dirac support.
20084         * ext/Makefile.am:
20085         * ext/dirac/Makefile.am:
20086         * ext/dirac/gstdirac.cc:
20087         * ext/dirac/gstdiracdec.cc:
20088
20089 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20090
20091         * gst/auparse/gstauparse.c: (gst_auparse_class_init),
20092         (gst_auparse_init), (gst_auparse_chain),
20093         (gst_auparse_change_state):
20094           Hack around spider. Remove me some day please.
20095
20096 2004-05-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20097
20098         * gst/auparse/gstauparse.c: (gst_auparse_chain):
20099           Fix for some uninitialized variables in previous patch, also
20100           makes it work. Fixes #142286 while we're at it.
20101
20102 2004-05-11  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20103
20104         * gst/auparse/gstauparse.c:
20105                 fixes a-law, adds mu-law, linear pcm (8,16,24,32), ieee (32, 64)
20106                 only unsupported formats are ADPCM/CCITT G.72x
20107                 reviewed by Ronald
20108         * gst-libs/gst/audio/audio.h: adds 24bit depth to PCM (x-raw-int)
20109
20110 2004-05-10  Wim Taymans  <wim@fluendo.com>
20111
20112         * ext/vorbis/Makefile.am:
20113         * ext/vorbis/README:
20114         * ext/vorbis/oggvorbisenc.c: (gst_oggvorbisenc_get_formats),
20115         (oggvorbisenc_get_type), (vorbis_caps_factory), (raw_caps_factory),
20116         (gst_oggvorbisenc_base_init), (gst_oggvorbisenc_class_init),
20117         (gst_oggvorbisenc_sinkconnect), (gst_oggvorbisenc_convert_src),
20118         (gst_oggvorbisenc_convert_sink),
20119         (gst_oggvorbisenc_get_query_types), (gst_oggvorbisenc_src_query),
20120         (gst_oggvorbisenc_init), (gst_oggvorbisenc_get_tag_value),
20121         (gst_oggvorbisenc_metadata_set1), (gst_oggvorbisenc_set_metadata),
20122         (get_constraints_string), (update_start_message),
20123         (gst_oggvorbisenc_setup), (gst_oggvorbisenc_write_page),
20124         (gst_oggvorbisenc_chain), (gst_oggvorbisenc_get_property),
20125         (gst_oggvorbisenc_set_property), (gst_oggvorbisenc_change_state):
20126         * ext/vorbis/oggvorbisenc.h:
20127         * ext/vorbis/vorbis.c: (plugin_init):
20128         * ext/vorbis/vorbisenc.c: (vorbis_caps_factory),
20129         (raw_caps_factory), (gst_vorbisenc_class_init),
20130         (gst_vorbisenc_init), (gst_vorbisenc_setup),
20131         (gst_vorbisenc_push_packet), (gst_vorbisenc_chain),
20132         (gst_vorbisenc_get_property), (gst_vorbisenc_set_property):
20133         * ext/vorbis/vorbisenc.h:
20134         Added a raw vorbis encoder to be used with the oggmuxer.
20135         We still need the old encoder for some gnome applications,
20136         read the README to find out how that works.
20137         The raw encoder is called "rawvorbisenc" until 0.9.
20138
20139 2004-05-10  Wim Taymans  <wim@fluendo.com>
20140
20141         * ext/ogg/gstogg.c: (plugin_init):
20142         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_plugin_init),
20143         (gst_ogg_print):
20144         * ext/ogg/gstoggmux.c: (gst_ogg_mux_get_type),
20145         (gst_ogg_mux_base_init), (gst_ogg_mux_class_init),
20146         (gst_ogg_mux_get_sink_event_masks), (gst_ogg_mux_init),
20147         (gst_ogg_mux_sinkconnect), (gst_ogg_mux_pad_link),
20148         (gst_ogg_mux_pad_unlink), (gst_ogg_mux_request_new_pad),
20149         (gst_ogg_mux_handle_src_event), (gst_ogg_mux_next_buffer),
20150         (gst_ogg_mux_push_page), (gst_ogg_mux_compare_pads),
20151         (gst_ogg_mux_queue_pads), (gst_ogg_mux_loop),
20152         (gst_ogg_mux_get_property), (gst_ogg_mux_set_property),
20153         (gst_ogg_mux_change_state), (gst_ogg_mux_plugin_init):
20154         Added an ogg muxer.
20155         Small typo fixes in the demuxer.
20156
20157 2004-05-10  Wim Taymans  <wim@fluendo.com>
20158
20159         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
20160         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
20161         (theora_enc_change_state), (theora_enc_set_property),
20162         (theora_enc_get_property):
20163         Mark the last packet with an EOS flag which is not really needed
20164         in gstreamer.
20165         Do some better video framerate initialisation.
20166         Update the buffer timestamp.
20167
20168 2004-05-10  Jan Schmidt  <thaytan@mad.scientist.com>
20169
20170         * ext/dv/gstdvdec.c: (gst_dvdec_change_state):
20171         Return the result of the parent state change call
20172
20173 2004-05-10  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20174
20175         * gst/law/alaw.c : alawdec should be registered with type ALAWDEC, not ALAWENC
20176         * gst/law/alaw-decode.c : put audio/x-alaw on pads, instead of audio/x-mulaw
20177         * gst/law/alaw-encode.c : (idem)
20178         * ext/a52dec/gsta52dec.c : mark audio/a52, audio/ac3 as deprecated in a comment
20179         * gst/ac3parse/gstac3parse.c : audio/ac3 => audio/x-ac3
20180         * gst/realmedia/rmdemux.c : audio/a52 => audio/x-ac3
20181
20182 2004-05-09  Benjamin Otte  <otte@gnome.org>
20183
20184         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
20185           don't use a fixed buffer size when writing variable length data to
20186           it. Fixes memory corruption and makes alsasrc work
20187
20188 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20189
20190         * ext/gnomevfs/gstgnomevfssink.c:
20191         (_gst_boolean_allow_overwrite_accumulator),
20192         (gst_gnomevfssink_class_init), (gst_gnomevfssink_open_file):
20193           Run glib's default signal handler (??) in RUN_CLEANUP rather than
20194           RUN_LAST, and don't use that to set the accumulator value because
20195           then it's always FALSE.
20196
20197 2004-05-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20198
20199         * gst-libs/gst/riff/riff-media.c:
20200         (gst_riff_create_video_caps_with_data),
20201         (gst_riff_create_audio_caps),
20202         (gst_riff_create_audio_template_caps):
20203         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head):
20204           Fix for unaligned RIFF files (i.e. where all the chunks together
20205           in a LIST chunk are not of the same size as the size given in
20206           the LIST chunk header). Fixes several odd WAVE files. Also fix
20207           ADPCM (block_align property) in audio, so that wavparse based
20208           on this works now as it used to stand-alone.
20209
20210 2004-05-09  Edward Hervey  <bilboed@bilboed.com>
20211
20212         reviewed by Benjamin Otte  <otte@gnome.org>
20213
20214         * ext/a52dec/gsta52dec.c:
20215         * ext/divx/gstdivxdec.c:
20216         * ext/divx/gstdivxenc.c:
20217         * ext/dts/gstdtsdec.c: (gst_dtsdec_base_init):
20218         * ext/faac/gstfaac.c: (gst_faac_base_init):
20219         * ext/faad/gstfaad.c: (gst_faad_base_init):
20220         * ext/ivorbis/vorbisfile.c:
20221         * ext/lame/gstlame.c:
20222         * ext/libfame/gstlibfame.c:
20223         * ext/mpeg2enc/gstmpeg2enc.cc:
20224         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_base_init):
20225         * ext/sidplay/gstsiddec.cc:
20226         * ext/speex/gstspeexdec.c:
20227         * ext/speex/gstspeexenc.c:
20228         * ext/xvid/gstxviddec.c:
20229         * ext/xvid/gstxvidenc.c:
20230           correct klasses. Mostly s,Codec/(Audio|Video),\1/Codec,
20231           (fixes #142193)
20232
20233 2004-05-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20234
20235         * ext/alsa/gstalsa.c: (device_list),
20236         (gst_alsa_class_probe_devices):
20237         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_open):
20238           Fix alsa oddness in mixer after the combination of using mixer
20239           in source/sink elements and using hw:x,y instead of just hw:x.
20240
20241 2004-05-09  Benjamin Otte  <otte@gnome.org>
20242
20243         * gst/wavparse/gstwavparse.c: (gst_wavparse_destroy_sourcepad),
20244         (gst_wavparse_create_sourcepad):
20245           make PAUSED=>READY=>PAUSED=READY work by not destroying NULL
20246           sourcepads
20247
20248 2004-05-09  Benjamin Otte  <otte@gnome.org>
20249
20250         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
20251           allow discont events before caps nego
20252
20253 2004-05-08  Benjamin Otte  <otte@gnome.org>
20254
20255         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
20256           don't leak events
20257
20258 2004-05-08  Benjamin Otte  <otte@gnome.org>
20259
20260         * gst/level/gstlevel.c: (gst_level_link), (gst_level_chain),
20261         (gst_level_change_state), (gst_level_init):
20262         * gst/level/gstlevel.h:
20263           figure out if we're initialized directly instead of keeping a
20264           variable that's wrong in 90% of cases
20265           don't initialize pads and then leak them and use a new unitialized
20266           pad. (fixes #142084)
20267           these were bugs so n00bish I didn't find them for an hour :/
20268
20269 2004-05-08 Iain <iain@prettypeople.org>
20270
20271         * gst/wavparse/gstwavparse.[ch]: Rewrote to use RiffRead instead.
20272         * gst-libs/gst/riff/riff-read.c (gst_riff_read_peek_head): Unstatic it
20273         (gst_riff_read_element_data): Ditto, and added a got_bytes argument to
20274         return the length that was read.
20275         (gst_riff_read_strf_auds): Allow fmt tags as well.
20276
20277 2004-05-07  David Schleef  <ds@schleef.org>
20278
20279         * ext/faad/gstfaad.c: (gst_faad_sinkconnect): HACK to correct
20280         signed char assumption in faad.h.
20281
20282 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20283
20284         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps):
20285           Missing break, detected by Daniel Gazard <daniel.gazard@free.fr>.
20286
20287 2004-05-07  Colin Walters  <walters@redhat.com>
20288
20289         * gst/volume/gstvolume.c (gst_volume_dispose): Unref dpman.
20290         * ext/flac/gstflacdec.c (gst_flacdec_dispose): Add dispose
20291         function.
20292         * gst/audioscale/gstaudioscale.c (gst_audioscale_dispose):
20293         Add dispose function.
20294
20295 2004-05-08  Jan Schmidt  <thaytan@mad.scientist.com>
20296         * ext/dv/gstdvdec.c: (gst_dvdec_video_link):
20297           Fix caps nego and pad templates. RGB mode caps should
20298           work now.
20299         * ext/dvdnav/gst-dvd:
20300           Move mpeg2dec inside the thread because otherwise the
20301           queue rejects cap changes mid-stream
20302         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
20303         (gst_mpeg2dec_flush_decoder):
20304           For mpeg2dec > 0.4.0, call the flush function instead of
20305           manually extracting all in-flight frames.
20306         * ext/raw1394/gstdv1394src.c: (gst_dv1394src_factory),
20307         (gst_dv1394src_init), (gst_dv1394src_iso_receive):
20308           Change mime type video/dv go video/x-dv to match the
20309           rest of gst-plugins
20310
20311 2004-05-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20312
20313         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_build_list):
20314         * ext/alsa/gstalsasink.c: (gst_alsa_sink_get_type),
20315         (gst_alsa_sink_class_init):
20316         * ext/alsa/gstalsasink.h:
20317         * ext/alsa/gstalsasrc.c: (gst_alsa_src_get_type),
20318         (gst_alsa_src_class_init):
20319         * ext/alsa/gstalsasrc.h:
20320           Make alsasink/src a subclass of alsamixer so that mixer stuff
20321           shows up in gst-rec. Needs some finetuning.
20322
20323 2004-05-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20324
20325         * ext/lame/gstlame.c: (gst_lame_chain):
20326           simplify
20327         * ext/mad/gstmad.c: (gst_mad_handle_event):
20328           fix event leak
20329         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find):
20330           be able to detect mp3 files < 4096 bytes
20331
20332 2004-05-06  Wim Taymans  <wim@fluendo.com>
20333
20334         * ext/theora/theoraenc.c: (gst_theora_enc_class_init),
20335         (theora_enc_sink_link), (theora_push_packet), (theora_enc_chain),
20336         (theora_enc_set_property), (theora_enc_get_property):
20337         Also encode the first frame, cleanup some code.
20338
20339 2004-05-06  Wim Taymans  <wim@fluendo.com>
20340
20341         * ext/mpeg2enc/gstmpeg2enc.cc:
20342         Forward events first before deciding that negotiation was
20343         not performed.
20344
20345 2004-05-06  Wim Taymans  <wim@fluendo.com>
20346
20347         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
20348         First process the events before deciding that negotiation
20349         was not performed.
20350
20351 2004-05-06  Wim Taymans  <wim@fluendo.com>
20352
20353         * ext/theora/Makefile.am:
20354         * ext/theora/theora.c: (plugin_init):
20355         * ext/theora/theoradec.c: (theora_dec_change_state):
20356         * ext/theora/theoraenc.c: (gst_theora_enc_base_init),
20357         (gst_theora_enc_class_init), (gst_theora_enc_init),
20358         (theora_enc_sink_link), (theora_enc_event), (theora_push_packet),
20359         (theora_enc_chain), (theora_enc_change_state),
20360         (theora_enc_set_property), (theora_enc_get_property):
20361         Added a theora encoder, grouped the encoder and decoder into the
20362         same plugin.
20363
20364 2004-05-05  Thomas Vander Stichele  <thomas at apestaart dot org>
20365
20366         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
20367         (gst_jpegenc_chain):
20368         fix DURATION on outgoing buffers
20369         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
20370         debug using time formats
20371         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
20372         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20373         (gst_xvimagesink_sink_link):
20374         windows with width/height 0 generate X errors, so don't allow them
20375
20376 2004-05-05  Wim Taymans  <wim@fluendo.com>
20377
20378         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
20379         (gst_mpeg2dec_base_init), (gst_mpeg2dec_init),
20380         (gst_mpeg2dec_negotiate_format):
20381         * ext/mpeg2dec/gstmpeg2dec.h:
20382           removed the static pad template so that we can add the
20383           more accurate framerate value to the caps.
20384
20385
20386 2004-05-04  Benjamin Otte  <otte@gnome.org>
20387
20388         * configure.ac:
20389           check for kdemacros.h, too (should fix #141821)
20390         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
20391           don't crash if no header was sent, but nicely error out (fixes part
20392           of #141554)
20393
20394 2004-05-04  Wim Taymans  <wim@fluendo.com>
20395
20396         * ext/mpeg2enc/gstmpeg2enc.cc: (gst_mpeg2enc_dispose): call the
20397         parent dispose function to avoid segfault on destroy.
20398
20399 2004-05-04  Thomas Vander Stichele  <thomas at apestaart dot org>
20400
20401         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
20402         (plugin_init):
20403         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
20404         (gst_xvimagesink_sink_link):
20405         clean up debugging caps
20406         also recreate xvimage when format has changed
20407
20408 2004-05-04  Benjamin Otte  <otte@gnome.org>
20409
20410         * ext/libvisual/Makefile.am:
20411         * ext/libvisual/visual.c: (gst_visual_class_init),
20412         (gst_visual_init), (gst_visual_dispose), (gst_visual_getcaps),
20413         (gst_visual_srclink), (gst_visual_chain),
20414         (gst_visual_change_state), (plugin_init):
20415           use a GstAdapter to correctly adapt buffer sizes - allows using a
20416           framerate
20417
20418 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20419
20420         * sys/v4l/gstv4lelement.h:
20421         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
20422         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get_fps), (gst_v4lsrc_getcaps),
20423         (gst_v4lsrc_buffer_free):
20424         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities):
20425         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
20426         (gst_v4lsrc_sync_frame), (gst_v4lsrc_grab_frame),
20427         (gst_v4lsrc_requeue_frame):
20428         move some debugging categories around
20429         query for fps index and set accordingly if found
20430
20431 2004-05-03  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20432
20433         * ext/lame/gstlame.c:
20434         correct defaults that lame_init puts out of range
20435
20436 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20437
20438         * ext/divx/gstdivxenc.c: (gst_divxenc_get_type),
20439         (gst_divxenc_class_init):
20440         fix range since -1 is the default
20441         * gst/mpeg1sys/gstmpeg1systemencode.c:
20442         (gst_mpeg1_system_encode_get_type), (gst_system_encode_multiplex):
20443         * gst/rtjpeg/gstrtjpegdec.c: (gst_rtjpegdec_get_type),
20444         (gst_rtjpegdec_chain):
20445         * gst/rtjpeg/gstrtjpegenc.c: (gst_rtjpegenc_get_type),
20446         (gst_rtjpegenc_chain):
20447         * sys/qcam/gstqcamsrc.c: (gst_autoexp_mode_get_type),
20448         (gst_qcamsrc_get_type), (gst_qcamsrc_change_state):
20449         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_get_type):
20450         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get_type):
20451         * sys/v4l/gstv4lsrc.c:
20452         * sys/v4l/v4l_calls.c: (gst_v4l_open):
20453         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_playback_init):
20454         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_capture_init):
20455         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_init):
20456         * sys/vcd/vcdsrc.c: (vcdsrc_get_type), (vcdsrc_get):
20457           remove gst_info calls
20458
20459 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20460
20461         * Makefile.am:
20462         * po/af.po:
20463         * po/az.po:
20464         * po/en_GB.po:
20465         * po/nl.po:
20466         * po/sr.po:
20467         * po/sv.po:
20468           Updated translations
20469
20470 2004-05-03  Thomas Vander Stichele  <thomas at apestaart dot org>
20471
20472         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
20473           refactor/comment code
20474
20475 2004-05-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20476
20477         * gst/asfdemux/Makefile.am:
20478         * gst/asfdemux/asfheaders.c:
20479         * gst/asfdemux/asfheaders.h:
20480         * gst/asfdemux/gstasf.c: (plugin_init):
20481         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_type),
20482         (gst_asf_demux_base_init), (gst_asf_demux_process_comment),
20483         (gst_asf_demux_setup_pad):
20484         * gst/asfdemux/gstasfdemux.h:
20485         * gst/asfdemux/gstasfmux.c:
20486         * gst/asfdemux/gstasfmux.h:
20487           Add tagging support to demuxer, split out registration in its own
20488           file instead of in demux (hacky), and prevent having some tables
20489           in our memory multiple times (in asfheaders.h).
20490
20491 2004-05-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20492
20493         * gst/matroska/matroska-demux.c:
20494         (gst_matroska_demux_parse_metadata):
20495         * gst/matroska/matroska-ids.h:
20496           Basic tag reading support.
20497
20498 2004-04-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20499
20500         * gst/matroska/matroska-demux.c: (gst_matroska_demux_audio_caps):
20501           Really detect ac-3 audio.
20502         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find):
20503           really detect matroska files (off-by-1).
20504
20505 2004-04-30  David Schleef  <ds@schleef.org>
20506
20507         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20508         (gst_qtdemux_add_stream), (qtdemux_parse), (qtdemux_type_get),
20509         (qtdemux_dump_stsz), (qtdemux_dump_stco), (qtdemux_dump_co64),
20510         (qtdemux_dump_unknown), (qtdemux_parse_tree), (qtdemux_parse_udta),
20511         (qtdemux_tag_add), (get_size), (gst_qtdemux_handle_esds): More qtdemux
20512         hackage -- parse a lot more atoms, extract a few tags.  One might even
20513         mistake this for tag support.  Maybe it is.
20514         * gst/qtdemux/qtdemux.h:
20515
20516 2004-04-30  Colin Walters  <walters@verbum.org>
20517
20518         * ext/alsa/gstalsasink.c (gst_alsa_sink_mmap): Plug a memleak.
20519
20520 2004-04-30  Thomas Vander Stichele  <thomas at apestaart dot org>
20521
20522         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20523         (gst_ffmpegcolorspace_getcaps):
20524           remove broken nego fix
20525
20526 2004-04-30  Benjamin Otte  <otte@gnome.org>
20527
20528         * configure.ac:
20529         * ext/Makefile.am:
20530         * ext/libvisual/Makefile.am:
20531         * ext/libvisual/visual.c:
20532           add initial support for libvisual (http://libvisual.sourceforge.net)
20533           libvisual is still quite alpha, so expect crashes in there :)
20534
20535 2004-04-29  David Schleef  <ds@schleef.org>
20536
20537         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream), (qtdemux_parse),
20538         (qtdemux_parse_trak), (get_size), (gst_qtdemux_handle_esds): Hacked
20539         up qtdemux to make it spit out codec_data.  Do _not_ look at this
20540         code; you will no longer respect me.
20541
20542 2004-04-29  Stephane Loeuillet <stephane.loeuillet@tiscali.fr>
20543
20544         * ext/alsa/gstalsa.c : (gst_alsa_class_probe_devices)
20545         * ext/alsa/gstalsa.h :
20546         change alsa pcm device discovery to find more than 1 device
20547         per card. code review by Ronald.
20548
20549 2004-04-29  David Schleef  <ds@schleef.org>
20550
20551         * sys/oss/gstosselement.c: (gst_osselement_rate_probe_check):
20552         Add a check for a driver bug on FreeBSD.  (bug #140565)
20553
20554 2004-04-29  Thomas Vander Stichele  <thomas at apestaart dot org>
20555
20556         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_get_type):
20557         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
20558         (gst_jpegenc_getcaps):
20559           move format setting to inner loop
20560         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20561         (gst_ffmpegcolorspace_getcaps):
20562           use GST_PAD_CAPS if available so that we use already negotiated
20563           caps
20564         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
20565         (qtdemux_parse_moov), (qtdemux_parse):
20566           extra debugging
20567         * sys/qcam/qcam-Linux.c: (qc_lock_wait), (qc_unlock):
20568         * sys/qcam/qcam-os.c: (qc_lock_wait), (qc_unlock):
20569           move hardcoded path to DEFINE
20570
20571 2004-04-28  David Schleef  <ds@schleef.org>
20572
20573         * gst/speed/gstspeed.c: (speed_parse_caps):  Fix caps parsing.
20574         (bug #140064)
20575
20576 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20577
20578         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
20579           Don't probe for playback device if we're a source element. Fixes
20580           #139658.
20581
20582 2004-04-29  Benjamin Otte  <otte@gnome.org>
20583
20584         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
20585         (gst_id3_tag_chain):
20586           rewrite buffer offset
20587
20588 2004-04-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20589
20590         * configure.ac:
20591         * ext/Makefile.am:
20592         * ext/dts/Makefile.am:
20593         * ext/dts/gstdtsdec.c: (gst_dtsdec_get_type),
20594         (gst_dtsdec_base_init), (gst_dtsdec_class_init), (gst_dtsdec_init),
20595         (gst_dtsdec_channels), (gst_dtsdec_renegotiate),
20596         (gst_dtsdec_handle_event), (gst_dtsdec_update_streaminfo),
20597         (gst_dtsdec_loop), (gst_dtsdec_change_state),
20598         (gst_dtsdec_set_property), (gst_dtsdec_get_property),
20599         (plugin_init):
20600         * ext/dts/gstdtsdec.h:
20601           New DTS decoder.
20602         * ext/faad/gstfaad.c: (gst_faad_sinkconnect),
20603         (gst_faad_srcconnect):
20604           Add ESDS atom handling (.m4a).
20605
20606 2004-04-27  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20607
20608         * ext/divx/gstdivxdec.c: (plugin_init):
20609           Remove comment that makes no sense.
20610         * ext/mad/gstid3tag.c: (gst_id3_tag_set_property):
20611           Fix for obvious typo that resulted in warnings during gst-register.
20612         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link),
20613         (gst_xviddec_sink_link):
20614           Fix caps negotiation a bit better.
20615         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
20616           We call this 'codec_data', not 'esds'.
20617
20618 2004-04-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20619
20620         * gst/monoscope/gstmonoscope.c:
20621           make sure we only provide 256x128
20622         * gst/monoscope/monoscope.c: (monoscope_init):
20623           assert size of 256x128
20624
20625 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20626
20627         * Makefile.am:
20628         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_fixate),
20629         (gst_v4lsrc_getcaps), (gst_v4lsrc_buffer_free):
20630           fixate to max width and height of device
20631
20632 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20633
20634         * Makefile.am:
20635         * sys/v4l/gstv4l.c:
20636         * sys/v4l/gstv4lsrc.c:
20637         * sys/v4l/v4l_calls.c:
20638         * sys/v4l/v4lsrc_calls.c:
20639           fix for qc-usb driver which fakes having more than one buffer
20640           by handing the same buffer twice, which confused GStreamer's/v4lsrc
20641           buffer_free override
20642           add debugging
20643
20644 2004-04-27  Thomas Vander Stichele  <thomas at apestaart dot org>
20645
20646         * Makefile.am:
20647         * gst/videotestsrc/gstvideotestsrc.c:
20648         (gst_videotestsrc_class_init), (gst_videotestsrc_change_state),
20649         (gst_videotestsrc_init), (gst_videotestsrc_get),
20650         (gst_videotestsrc_set_property), (gst_videotestsrc_get_property):
20651         * gst/videotestsrc/gstvideotestsrc.h:
20652           add num-buffers property
20653
20654         2004-04-26  Benjamin Otte  <otte@gnome.org>
20655
20656         * ext/mad/gstid3tag.c: (plugin_init):
20657           set id3mux rank to NONE so it doesn't confuse spider
20658           require audio/mpeg,mpegversion=1 in id3mux
20659
20660 2004-04-26  Benjamin Otte  <otte@gnome.org>
20661
20662         * configure.ac:
20663           detect faad correctly as non-working if it's indeed non-working
20664
20665 2004-04-26  Thomas Vander Stichele  <thomas at apestaart dot org>
20666
20667         * Makefile.am:
20668         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_get_type),
20669         (gst_jpegenc_class_init), (gst_jpegenc_getcaps):
20670         fix _getcaps so it only negotiates to its supported format
20671
20672 2004-04-25  Benjamin Otte  <otte@gnome.org>
20673
20674         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
20675           fix memleak
20676
20677 2004-04-23  Benjamin Otte  <otte@gnome.org>
20678
20679         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
20680           audio/x-raw-int with height rules! not. Now it's depth.
20681
20682 2004-04-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20683
20684         * gst/wavparse/gstwavparse.c: (gst_wavparse_create_sourcepad),
20685         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
20686         (gst_wavparse_loop):
20687           Missing variable initialization. Add handling of DVI ADPCM. Fix
20688           mis-parsing of LIST chunks. This works around a bug where we mis-
20689           parse non-aligning LIST chunks (so LIST chunks where the contents
20690           don't align with the actual LIST size). The correct fix is to use
20691           rifflib, I'm not going to fix wavparse - too much work. All this
20692           fixes #104878.
20693
20694 2004-04-22  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
20695
20696         reviewed by Benjamin Otte  <otte@gnome.org>
20697
20698         * ext/shout/gstshout.c: (gst_icecastsend_change_state):
20699           fix shoutcast not working (fixes #140844)
20700
20701 2004-04-22  Benjamin Otte  <otte@gnome.org>
20702
20703         * ext/hermes/gsthermescolorspace.c:
20704         (gst_hermes_colorspace_caps_remove_format_info):
20705         * gst/colorspace/gstcolorspace.c:
20706         (gst_colorspace_caps_remove_format_info):
20707         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20708         (gst_ffmpegcolorspace_caps_remove_format_info):
20709           s/gst_caps_simplify/gst_caps_do_simplify/
20710
20711 2004-04-22  Benjamin Otte  <otte@gnome.org>
20712
20713         * gst-libs/gst/riff/riff-media.c:
20714         (gst_riff_create_video_caps_with_data):
20715           mpegversion is an int
20716         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init):
20717           don't try to create pad templates with NULL caps, use any caps
20718           instead.
20719
20720 2004-04-20  David Schleef  <ds@schleef.org>
20721
20722         * ext/sdl/Makefile.am: Link against libgstinterfaces, not
20723         libgstxoverlay.  jmmv@menta.net (Julio M. Merino Vidal)
20724         (bug #140384)
20725
20726 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
20727
20728         reviewed by David Schleef
20729
20730         * ext/mad/gstid3tag.c: Add stdlib.h
20731         * gst/rtp/gstrtpgsmenc.c: same
20732         * gst/tags/gstid3tag.c: same
20733         * gst/udp/gstudpsrc.c: (gst_udpsrc_get): Fix GST_DISABLE_LOADSAVE
20734         * gst/tcp/gsttcpsink.c: (gst_tcpsink_sink_link): Adjust
20735         GST_DISABLE_LOADSAVE use.
20736         * gst/udp/gstudpsink.c: (gst_udpsink_sink_link): Likewise.
20737         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get): Likewise.
20738         * ext/gnomevfs/gstgnomevfssrc.c: Include <stdlib.h> (needed by
20739         atol(3)).
20740         * sys/oss/gstosselement.h: Include <sys/types.h> (needed for dev_t).
20741         * gst/tags/gstvorbistag.c: Include <stdlib.h> (needed by
20742         strtoul(3)).
20743         * gst/rtp/gstrtpL16enc.c: Include <stdlib.h> (needed by random(3)).
20744         * ext/mad/Makefile.am: (libgstmad_la_CFLAGS): Add $(MAD_CFLAGS)
20745         $(ID3_CFLAGS).
20746         * ext/libfame/Makefile.am: (libgstlibfame_la_CFLAGS): Add
20747         $(LIBFAME_CFLAGS).
20748
20749 2004-04-20  David Schleef  <ds@schleef.org>
20750
20751         * gst/realmedia/rmdemux.c:  This was supposed to part of the
20752         last checkin.  Same idea.
20753
20754 2004-04-20  Daniel Gazard  <daniel.gazard@epita.fr>
20755
20756         reviewed by David Schleef
20757
20758         * configure.ac: bump required gstreamer version to 0.8.1.1
20759         because of following changes [--ds]
20760
20761         * gst-libs/gst/riff/riff-read.c:  Include gst/gstutils.h.
20762         (gst_riff_peek_head, gst_riff_peek_list, gst_riff_read_list)
20763         (gst_riff_read_header):  Use GST_READ_UINT*
20764         macros to access possibly unaligned memory.
20765
20766         * gst/typefind/gsttypefindfunctions.c: Include gst/gstutils.h.
20767         (mp3_type_find):  Use GST_READ_UINT*
20768         macros to access possibly unaligned memory.
20769         (mp3_type_find, mpeg1_parse_header, qt_type_find)
20770         (speex_type_find): Likewise
20771
20772         * gst/tags/gstvorbistag.c: (ADVANCE): Likewise
20773
20774         * gst/qtdemux/qtdemux.c: Include stdlib.h (needed by realloc).
20775         (QTDEMUX_GUINT32_GET, QTDEMUX_GUINT16_GET, QTDEMUX_FP32_GET)
20776         (QTDEMUX_FP16_GET, QTDEMUX_FOURCC_GET)
20777         (gst_qtdemux_loop_header, gst_qtdemux_loop_header)
20778         (qtdemux_node_dump_foreach, qtdemux_tree_get_child_by_type)
20779         (qtdemux_tree_get_sibling_by_type):  Use GST_READ_UINT*
20780         macros to access possibly unaligned memory.
20781
20782         * gst/mpegstream/gstmpegpacketize.c: (parse_generic, parse_chunk):
20783         Likewise.
20784
20785         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead)
20786         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes): Likewise.
20787
20788         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
20789         Likewise.
20790
20791         * gst/mpeg2sub/gstmpeg2subt.c: (GST_BUFFER_DATA)
20792         (gst_mpeg2subt_chain_subtitle): Likewise.
20793
20794         * gst/mpeg1videoparse/gstmp1videoparse.c: (mp1videoparse_parse_seq)
20795         (gst_mp1videoparse_time_code, gst_mp1videoparse_real_chain):
20796         Likewise.
20797
20798         * gst/mpeg1sys/buffer.c: (mpeg1mux_buffer_update_audio_info):
20799         Likewise.
20800
20801         * gst/cdxaparse/gstcdxaparse.c: (gst_bytestream_peek_bytes):
20802         Likewise.
20803
20804         * gst/asfdemux/gstasfdemux.c: (_read_var_length, _read_uint):
20805         Likewise.
20806
20807 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20808
20809         * configure.ac:
20810           update required version of GStreamer because of GST_TIME_FORMAT
20811
20812 2004-04-20  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20813
20814         * ext/mad/gstid3tag.c: (gst_id3_tag_init):
20815           remove leftover g_print
20816         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
20817           don't try setting only a subset of the caps. We don't want to kill
20818           autoplugging on purpose
20819
20820 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20821
20822         * sys/ximage/ximagesink.c: (plugin_init):
20823         * sys/xvimage/xvimagesink.c: (plugin_init):
20824           add debugging categories
20825
20826 2004-04-20  Thomas Vander Stichele  <thomas at apestaart dot org>
20827
20828         * po/en_GB.po:
20829         * po/LINGUAS:
20830           Adding en_GB translation (Gareth Owen)
20831
20832 2004-04-20  David Schleef  <ds@schleef.org>
20833
20834         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
20835         (qtdemux_parse), (qtdemux_type_get), (qtdemux_dump_mvhd),
20836         (qtdemux_dump_tkhd), (qtdemux_dump_stsd), (qtdemux_dump_unknown),
20837         (qtdemux_parse_trak), (qtdemux_video_caps), (qtdemux_audio_caps):
20838         A number of new features and hacks to extract the esds atom and
20839         put it into the caps.  (bug #137724)
20840
20841 2004-04-19  David Schleef  <ds@schleef.org>
20842
20843         * gconf/Makefile.am: Fix for non-GNU make
20844         * gst-libs/gst/Makefile.am: Change directory order to handle
20845         GstPlay linking with gstinterfaces
20846         * gst-libs/gst/audio/make_filter: make use of tr portable
20847         * gst-libs/gst/play/Makefile.am: Add intended \
20848         * gst-libs/gst/xwindowlistener/xwindowlistener.c:
20849         (gst_xwin_set_clips): Switch to ISO variadic macro. Use a
20850         function prototype instead of void *.
20851         * gst/ffmpegcolorspace/gstffmpegcodecmap.c: Switch to ISO variadic
20852         macro.
20853         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
20854         (gst_ffmpegcolorspace_chain): wrap NULL in GST_ELEMENT_ERROR call
20855         * gst/videofilter/make_filter: make use of tr portable
20856         * pkgconfig/Makefile.am: Remove GNU extension in Makefile target
20857
20858 2004-04-19  Thomas Vander Stichele  <thomas at apestaart dot org>
20859
20860         * po/LINGUAS:
20861         * po/uk.po:
20862           Added Ukrainian translation (Maxim V. Dziumanenko)
20863
20864 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20865
20866         * ext/gsm/gstgsmdec.c: (gst_gsmdec_init), (gst_gsmdec_getcaps),
20867         (gst_gsmdec_link), (gst_gsmdec_chain):
20868           Fix capsnego, simplify chain function slightly.
20869         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
20870           Add GSM.
20871
20872 2004-04-18  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20873
20874         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
20875         (gst_wavparse_destroy_sourcepad), (gst_wavparse_create_sourcepad),
20876         (gst_wavparse_parse_fmt), (gst_wavparse_change_state):
20877           Hack to make wavparse work with spider (always -> sometimes pad).
20878           Fixes #135862 && #140411.
20879
20880 2004-04-18  Benjamin Otte  <otte@gnome.org>
20881
20882         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
20883         (gst_osselement_rate_probe_check),
20884         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate):
20885           get rid of \n in debug output
20886
20887 2004-04-17  Iain <iain@prettypeople.org>
20888
20889         * gst/wavparse/gstwavparse.c (gst_wavparse_loop): Allow all events,
20890         not just EOS.
20891
20892 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20893
20894         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type),
20895         (gst_id3_tag_class_init), (gst_id3_tag_get_caps),
20896         (gst_id3_tag_add_src_pad), (gst_id3_tag_init),
20897         (gst_id3_tag_set_property), (gst_id3_tag_do_caps_nego),
20898         (gst_id3_tag_src_link), (gst_id3_tag_chain),
20899         (gst_id3_tag_change_state), (plugin_init):
20900           deprecate id3tag element and replace with id3demux/id3mux.
20901           great side effect: this ugly file is now even uglier, yay!
20902         * ext/mad/gstmad.h:
20903           remove non-available function
20904           update for new get_type
20905
20906 2004-04-17  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20907
20908         * configure.ac:
20909           require mpeg2dec >= 0.4.0
20910
20911 2004-04-17  Benjamin Otte  <otte@gnome.org>
20912
20913         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
20914         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
20915         (gst_xvimagesink_set_xwindow_id):
20916           call GST_ELEMENT_ERROR whenever get_xcontext fails. Includes
20917           assorted cleanup fixes.
20918
20919 2004-04-16  David Schleef  <ds@schleef.org>
20920
20921         * sys/ximage/ximagesink.h: Compile fix for FreeBSD. (bug #140268)
20922         * sys/xvimage/xvimagesink.h: same
20923
20924 2004-04-16  Thomas Vander Stichele  <thomas at apestaart dot org>
20925
20926         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
20927           Fix GST_ELEMENT_ERROR with (NULL)
20928
20929 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20930
20931         * gst-libs/gst/riff/riff-media.c:
20932         (gst_riff_create_video_caps_with_data):
20933           Add div[3456] as fourccs for DivX 3 (fixes #140137).
20934
20935 2004-04-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20936
20937         * gst-libs/gst/riff/riff-media.c:
20938         (gst_riff_create_video_caps_with_data),
20939         (gst_riff_create_video_caps), (gst_riff_create_audio_caps),
20940         (gst_riff_create_video_template_caps),
20941         (gst_riff_create_audio_template_caps):
20942         * gst-libs/gst/riff/riff-media.h:
20943         * gst-libs/gst/riff/riff-read.c:
20944         (gst_riff_read_strf_vids_with_data), (gst_riff_read_strf_vids):
20945         * gst-libs/gst/riff/riff-read.h:
20946         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
20947           Add MS RLE support. I added some functions to read out strf chunks
20948           into strf chunks and the data behind it. This is usually color
20949           palettes (as in RLE, but also in 8-bit RGB). Also use those during
20950           caps creation. Lastly, add ADPCM (similar to wavparse - which
20951           should eventually be rifflib based).
20952         * gst/matroska/matroska-demux.c: (gst_matroska_demux_class_init),
20953         (gst_matroska_demux_init), (gst_matroska_demux_reset):
20954         * gst/matroska/matroska-demux.h:
20955           Remove placeholders for some prehistoric tagging system. Didn't add
20956           support for any tag system really anyway.
20957         * gst/qtdemux/qtdemux.c:
20958           Add support for audio/x-m4a (MPEG-4) through spider.
20959         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
20960         (gst_wavparse_loop):
20961           ADPCM support (#135862). Increase max. buffer size because we
20962           cannot split buffers for ADPCM (screws references) and I've seen
20963           files with 2048 byte chunks. 4096 seems safe for now.
20964
20965 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20966
20967         * configure.ac: bump nano to 1
20968
20969 === release 0.8.1 ===
20970
20971 2004-04-15  Thomas Vander Stichele  <thomas at apestaart dot org>
20972
20973         * configure.ac: releasing 0.8.1, "Comforting Sounds"
20974
20975 2004-04-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
20976
20977         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
20978           Fix typo in divxversion (3 instead of 4 for "DIVX" fourcc).
20979           Fixes #140058
20980
20981 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20982
20983         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
20984           lower rank of dvddemux so that it's not used for mpeg playback.
20985
20986 2004-04-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
20987
20988         * configure.ac:
20989           save libs correctly when checking mad
20990
20991 2004-04-14  Thomas Vander Stichele  <thomas at apestaart dot org>
20992
20993         * ext/mad/gstid3tag.c: (plugin_init):
20994           lower rank of id3tag as proposed by Benjamin.  Fixes #139926.
20995
20996 2004-04-13  David Schleef  <ds@schleef.org>
20997
20998         * common/m4/gst-feature.m4: Call -config scripts with
20999         --plugin-libs if it is supported.
21000         * gst/avi/gstavimux.c: (gst_avimux_vidsinkconnect): sequences of
21001         JPEG images are image/jpeg.
21002         * gst/debug/Makefile.am:
21003         * gst/debug/negotiation.c: (gst_negotiation_class_init),
21004         (gst_negotiation_getcaps), (gst_negotiation_pad_link),
21005         (gst_negotiation_update_caps), (gst_negotiation_get_property),
21006         (gst_negotiation_plugin_init): Add a property that acts like
21007         filter caps.
21008         * testsuite/gst-lint:  Move license checking to be a standard
21009         test.
21010
21011 2004-04-13  David Schleef  <ds@schleef.org>
21012
21013         * gst/avi/gstavidemux.c: (gst_avi_demux_reset): Fix memleak.
21014         patch from Sebastien Cote (bug #139958)
21015
21016 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21017
21018         * examples/gstplay/Makefile.am:
21019         * examples/gstplay/player.c: (main):
21020           make the commandline player example use gconf settings
21021
21022 2004-04-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21023
21024         * ext/libcaca/gstcacasink.c: (gst_cacasink_class_init),
21025         (gst_cacasink_sinkconnect), (gst_cacasink_init),
21026         (gst_cacasink_chain), (gst_cacasink_open), (gst_cacasink_close):
21027           init/end library during state transition, not object
21028           creation/disposal.  get rid of custom dispose handler.
21029
21030
21031 2004-04-12  Christian Schaller <Uraeus@gnome.org>
21032
21033         * sys/oss/gstosselement.c: s/lstat/stat/ from freeBSD, since it can
21034         be a symlink
21035
21036 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21037
21038         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_data):
21039           Handle JUNK chunks inside data section. Prevents warnings.
21040
21041 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21042
21043         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
21044         (gst_riff_create_video_template_caps):
21045           Add MS video v1.
21046         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index),
21047         (gst_avi_demux_stream_data):
21048           Add support for "rec-list" chunks.
21049
21050 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21051
21052         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_audio_caps):
21053           Fix another codecname mismatch.
21054
21055 2004-04-11  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21056
21057         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
21058           Fix divx caps mismatch and move from video/x-jpeg to image/jpeg
21059           so that MJPEG plays back.
21060
21061 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21062
21063         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
21064         (gst_mp1videoparse_real_chain), (gst_mp1videoparse_change_state):
21065         * gst/mpeg1videoparse/gstmp1videoparse.h:
21066           Fix for some slight mis-cuts in buffer parsing, and for some
21067           potential overflows or faults-causers. Adds disconts. Also fixes
21068           #139105 while we're at it.
21069
21070 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21071
21072         * configure.ac:
21073         * sys/v4l2/gstv4l2element.h:
21074           Workaround for missing struct v4l2_buffer declaration in Suse 9
21075           and Mandrake 10 linux/videodev2.h header file (#135919).
21076
21077 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21078
21079         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file):
21080           Bail out if no filename was given.
21081
21082 2004-04-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21083
21084         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_v4l2fourcc_to_caps),
21085         (gst_v4l2_fourcc_from_structure):
21086           Add Y41B/Y42B YUV formats (see #125732), fix Y41P (was typo'ed to
21087           Y41B somewhere).
21088
21089 2004-04-09  Benjamin Otte  <otte@gnome.org>
21090
21091         * ext/gnomevfs/gstgnomevfssink.c:
21092         (_gst_boolean_allow_overwrite_accumulator),
21093         (gst_gnomevfssink_class_init):
21094           fix erase signal - if any handler returns false the file will not be
21095           overwritten. If no handler is connected, the file will not be
21096           overwritten either.
21097           renamed signal to "allow-overwrite"
21098         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
21099           free string when adding it to ID3 failed
21100         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
21101           unref event when done
21102         * gst/audioconvert/gstaudioconvert.c: (_fixate_caps_to_int):
21103           free caps
21104         * gst/typefind/gsttypefindfunctions.c:
21105         (mpeg_video_stream_type_find):
21106           fix invalid read
21107
21108 2004-04-08  David Schleef  <ds@schleef.org>
21109
21110         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21111         (gst_ffmpegcolorspace_register): Change rank to PRIMARY.
21112
21113 2004-04-08  David Schleef  <ds@schleef.org>
21114
21115         * gst/colorspace/gstcolorspace.c: Don't advertise a conversion
21116         we don't support (bug #139532)
21117
21118 2004-04-07  Thomas Vander Stichele  <thomas at apestaart dot org>
21119
21120         * ext/mad/gstmad.c: (gst_mad_handle_event),
21121         (gst_mad_check_caps_reset), (gst_mad_chain),
21122         (gst_mad_change_state):
21123           only set explicit caps if they haven't been set before for
21124           this stream.  MPEG-audio sample rate/channels aren't allowed
21125           to change in-stream.
21126           Fixes #139382
21127
21128 2004-04-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21129
21130         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_base_init),
21131         (_gst_boolean_did_something_accumulator),
21132         (gst_gnomevfssink_class_init), (gst_gnomevfssink_dispose),
21133         (gst_gnomevfssink_init), (gst_gnomevfssink_set_property),
21134         (gst_gnomevfssink_get_property), (gst_gnomevfssink_open_file),
21135         (gst_gnomevfssink_close_file), (gst_gnomevfssink_chain),
21136         (gst_gnomevfssink_change_state):
21137           Fix erase signal. Don't erase by default. Remove handoff signal.
21138           Remove erase property. Don't segfault. General cleanup.
21139
21140 2004-04-07  Benjamin Otte  <otte@gnome.org>
21141
21142         * gst-libs/gst/gconf/test-gconf.c: (main):
21143           add missing gst_init
21144
21145 2004-04-07  Benjamin Otte  <otte@gnome.org>
21146
21147         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
21148           free the mutexes, too
21149
21150 2004-04-07  Benjamin Otte  <otte@gnome.org>
21151
21152         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_dispose):
21153           actually free the URI string
21154         * ext/mad/gstid3tag.c: (gst_id3_tag_src_event):
21155           compute offset correctly when passing discont events
21156         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
21157           don't leak discont events
21158         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
21159           add some missing breaks so caps aren't copied randomly
21160         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream):
21161           if we realloc memory, we better use it
21162
21163 2004-04-06  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21164
21165         * ext/mad/gstmad.c: (normal_seek):
21166           fix GST_FORMAT_TIME usage
21167
21168 2004-04-05  David Schleef  <ds@schleef.org>
21169
21170         * ext/kio/kiosrc.cpp:  Undefine KDE_DEPRECATED so we can use
21171         a deprecated function (hack!)
21172
21173 2004-04-05  Benjamin Otte  <otte@gnome.org>
21174
21175         * ext/esd/esdmon.c: (gst_esdmon_get):
21176           fix nonterminated vararg and memleak
21177
21178 2004-04-05  Benjamin Otte  <otte@gnome.org>
21179
21180         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init),
21181         (gst_ladspa_init), (gst_ladspa_force_src_caps),
21182         (gst_ladspa_set_property), (gst_ladspa_get_property),
21183         (gst_ladspa_instantiate), (gst_ladspa_activate),
21184         (gst_ladspa_deactivate), (gst_ladspa_loop), (gst_ladspa_chain):
21185           clean up debugging
21186
21187 2004-04-05  Stefan Kost <kost@imn.htwk-leipzig.de>
21188
21189         reviewed by Benjamin Otte  <otte@gnome.org>
21190
21191         * ext/ladspa/gstladspa.c: (gst_ladspa_class_init):
21192           check for broken LADSPA parameters (fixes #138635)
21193
21194 2004-04-05  Benjamin Otte  <otte@gnome.org>
21195
21196         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps):
21197           advertise buffer-frames correctly on sinkpads
21198
21199 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21200
21201         * ext/mad/gstmad.c: (gst_mad_get_type), (gst_mad_layer_get_type),
21202         (gst_mad_mode_get_type), (gst_mad_emphasis_get_type),
21203         (gst_mad_get_event_masks), (gst_mad_get_query_types), (index_seek),
21204         (normal_seek), (gst_mad_src_event), (gst_mad_handle_event),
21205         (gst_mad_check_caps_reset), (gst_mad_chain):
21206         add more debugging, only reset caps when we're not in error state
21207
21208 2004-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
21209
21210         * ext/mad/gstmad.c: add debugging category, comment + cleanups
21211
21212 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
21213
21214         reviewed by Benjamin Otte  <otte@gnome.org>
21215
21216         * configure.ac:
21217           fix == in test(1) operator
21218
21219 2004-04-05  Julio M. Merino Vidal  <jmmv@menta.net>
21220
21221         reviewed by Benjamin Otte  <otte@gnome.org>
21222
21223         * configure.ac:
21224           fix --export-symblos-regex to a working regex.
21225
21226 2004-04-04  Benjamin Otte  <otte@gnome.org>
21227
21228         * sys/oss/.cvsignore:
21229           add for oss_probe
21230
21231 2004-04-03  Tim-Phillip M??ller <t.i.m@zen.co.uk>
21232
21233         reviewed by Benjamin Otte  <otte@gnome.org>
21234
21235         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
21236           add missing 'new_media' argument (fixes #138168)
21237         * gst/matroska/matroska-demux.c:
21238         (gst_matroska_demux_handle_seek_event):
21239           add vararg terminator (fixes #138169)
21240
21241 2004-04-02  David Schleef  <ds@schleef.org>
21242
21243         * ext/gdk_pixbuf/Makefile.am:  Make sure gstgdkanimation.h is
21244         disted (bug #138914)
21245
21246 2004-04-01  Benjamin Otte  <otte@gnome.org>
21247
21248         * ext/alsa/gstalsa.c: (gst_alsa_change_state),
21249         (gst_alsa_close_audio):
21250           handle case better where a soundcard can't pause
21251         * ext/ogg/gstoggdemux.c:
21252           don't crash when we get events but don't have pads yet
21253
21254 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21255
21256         * sys/oss/gstosselement.c: (gst_osselement_probe_caps):
21257           throw an error if we couldn't probe any caps.
21258
21259 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
21260
21261         * ext/dvdnav/gst-dvd:
21262         Add a really simple sample DVD player
21263
21264 2004-04-01  Jan Schmidt  <thaytan@mad.scientist.com>
21265
21266         * ext/a52dec/gsta52dec.c: (gst_a52dec_get_type), (gst_a52dec_init),
21267         (gst_a52dec_push), (gst_a52dec_handle_event),
21268         (gst_a52dec_update_streaminfo), (gst_a52dec_loop),
21269         (gst_a52dec_change_state):
21270         * ext/a52dec/gsta52dec.h:
21271           Use a debug category, Output timestamps correctly
21272           Emit tag info, Handle events, tell liba52dec about cpu
21273           capabilities so it can use MMX etc.
21274         * ext/dv/gstdvdec.c: (gst_dvdec_loop), (gst_dvdec_change_state):
21275           Fix a crasher accessing invalid memory
21276         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_init),
21277         (dvdnavsrc_update_highlight), (dvdnavsrc_loop),
21278         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
21279         (dvdnavsrc_event), (dvdnavsrc_get_formats), (dvdnavsrc_convert),
21280         (dvdnavsrc_query):
21281           Some support for byte-format seeking.
21282           Small fixes for still frames and menu button overlays
21283         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_get_type),
21284         (gst_mpeg2dec_alloc_buffer):
21285           Use a debug category. Adjust the report level of several items to
21286           LOG. Call mpeg2_custom_fbuf to mark our buffers as 'custom buffers'
21287           so it doesn't lose the GstBuffer pointer
21288         * gst/debug/Makefile.am:
21289         * gst/debug/gstdebug.c: (plugin_init):
21290         * gst/debug/gstnavseek.c: (gst_navseek_get_type),
21291         (gst_navseek_base_init), (gst_navseek_class_init),
21292         (gst_navseek_init), (gst_navseek_seek),
21293         (gst_navseek_handle_src_event), (gst_navseek_set_property),
21294         (gst_navseek_get_property), (gst_navseek_chain),
21295         (gst_navseek_plugin_init):
21296         * gst/debug/gstnavseek.h:
21297           Add the navseek debug element for seeking back and forth in a
21298           video stream using arrow keys.
21299         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_get_type),
21300         (gst_mpeg2subt_base_init), (gst_mpeg2subt_class_init),
21301         (gst_mpeg2subt_init), (gst_mpeg2subt_finalize),
21302         (gst_mpeg2subt_getcaps_video), (gst_mpeg2subt_link_video),
21303         (gst_mpeg2subt_handle_video), (gst_mpeg2subt_src_event),
21304         (gst_mpeg2subt_parse_header), (gst_get_nibble),
21305         (gst_setup_palette), (gst_get_rle_code), (gst_draw_rle_line),
21306         (gst_merge_uv_data), (gst_mpeg2subt_merge_title),
21307         (gst_update_still_frame), (gst_mpeg2subt_handle_subtitle),
21308         (gst_mpeg2subt_handle_dvd_event), (gst_mpeg2subt_loop):
21309         * gst/mpeg2sub/gstmpeg2subt.h:
21310           Pretty much a complete rewrite. Now a loopbased element. May still
21311           require work to properly synchronise subtitle buffers.
21312         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private),
21313         (gst_dvd_demux_send_subbuffer):
21314         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
21315           Don't attempt to create subbuffers of size 0
21316           Reduce a couple of error outputs to warnings.
21317         * gst/y4m/gsty4mencode.c: (gst_y4mencode_sinkconnect),
21318         (gst_y4mencode_chain):
21319         Output the y4m frame header correctly.
21320
21321 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21322
21323         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
21324           throw errors instead of allowing SIGFPE
21325
21326 2004-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
21327
21328         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_string),
21329         (gst_gconf_render_bin_from_key):
21330           leak plugging and style fixing
21331
21332 2004-03-31  David Schleef  <ds@schleef.org>
21333
21334         * gst/audioscale/gstaudioscale.c: (gst_audioscale_expand_value),
21335         (gst_audioscale_getcaps): Fix getcaps to expand and union lists.
21336         (bug #138225)
21337         * gst/debug/Makefile.am:
21338         * gst/debug/breakmydata.c: (gst_break_my_data_plugin_init):
21339         * gst/debug/gstdebug.c: (plugin_init):  Merge elements into one
21340         plugin.
21341         * gst/debug/negotiation.c: (gst_gst_negotiation_get_type),
21342         (gst_negotiation_base_init), (gst_negotiation_class_init),
21343         (gst_negotiation_init), (gst_negotiation_getcaps),
21344         (gst_negotiation_pad_link), (gst_negotiation_chain),
21345         (gst_negotiation_set_property), (gst_negotiation_get_property),
21346         (gst_negotiation_plugin_init):  New element to talk about random
21347         negotiation things happening in a pipeline.
21348
21349 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21350
21351         * gst/adder/gstadder.c: (gst_adder_get_type), (gst_adder_loop):
21352           fix integer addition with help of Stefan Kost
21353
21354 2004-03-31  Thomas Vander Stichele  <thomas at apestaart dot org>
21355
21356         * po/nl.po: updated Dutch translation (Elros Cyriatan)
21357
21358 2004-03-30  David Schleef  <ds@schleef.org>
21359
21360         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer),
21361         (gst_mpeg2dec_negotiate_format):  Handle Y42B-format MPEG
21362         video, patch from Matthew.Spencer@eu.sony.com (Matthew Spencer)
21363         (bug #137504)
21364         * ext/mpeg2dec/gstmpeg2dec.h:
21365
21366 2004-03-30  David Schleef  <ds@schleef.org>
21367
21368         * ext/gdk_pixbuf/Makefile.am: Remove spurious rules. (bug #136527)
21369
21370 2004-03-30  David Schleef  <ds@schleef.org>
21371
21372         * tools/gst-launch-ext-m.m:  Applied patch from gnome@flyn.org (W.
21373         Michael Petullo) to handle .mov
21374
21375 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21376
21377         * sys/oss/gstosselement.c: (gst_osselement_probe_caps),
21378         (gst_osselement_rate_check_rate):
21379           probe caps correctly for sound cards that only support one format
21380
21381 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21382
21383         * ext/kio/kiosrc.cpp: (process_events):
21384           update handling event processing if inside KDE - untested
21385
21386 2004-03-29  David Schleef  <ds@schleef.org>
21387
21388         * ext/hermes/gsthermescolorspace.c: (plugin_init): decrease rank
21389         by 2 to not interfere with other colorspaces.
21390         * ext/pango/gsttextoverlay.c: (plugin_init): change rank to NONE
21391         * gst/colorspace/gstcolorspace.c: (plugin_init): decrease rank by
21392         one to not interfere with ffmpeg_colorspace.
21393
21394 2004-03-29  David Schleef  <ds@schleef.org>
21395
21396         * ext/alsa/gstalsa.c: (gst_alsa_fixate): Don't fixate fields that
21397         aren't in the caps.
21398         * gst/sine/gstsinesrc.c: change rate caps to [1,MAX]
21399         * gst/videocrop/gstvideocrop.c: (plugin_init): Change rank to NONE.
21400
21401 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21402
21403         * gst-libs/gst/riff/riff-media.c:
21404           fail on error, don't try to set stuff on NULL caps
21405
21406 2004-03-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
21407
21408         * configure.ac:
21409         * ext/Makefile.am:
21410         * ext/kio/Makefile.am:
21411         * ext/kio/kioreceiver.cpp:
21412         * ext/kio/kioreceiver.h:
21413         * ext/kio/kiosrc.cpp:
21414         * ext/kio/kiosrc.h:
21415           add experimental kiosrc plugin
21416         * ext/alsa/gstalsaplugin.c: (plugin_init):
21417           initialize debugging category only when we're sure registering the
21418           plugins worked.
21419
21420 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
21421
21422         * examples/gstplay/player.c: (main):
21423         * gst-libs/gst/play/play.c: (gst_play_class_init),
21424         (gst_play_set_location), (gst_play_set_data_src),
21425         (gst_play_set_video_sink), (gst_play_set_audio_sink),
21426         (gst_play_set_visualization), (gst_play_connect_visualization):
21427           check return values of element_set_state and return FALSE where
21428           failed
21429
21430 2004-03-29  Benjamin Otte  <otte@gnome.org>
21431
21432         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event):
21433           try harder to check if an event is really a discont
21434
21435 2004-03-29  Thomas Vander Stichele  <thomas at apestaart dot org>
21436
21437         * po/LINGUAS: adding Azerbaijani (M??tin ??mirov)
21438         * po/az.po:
21439
21440 2004-03-28  Benjamin Otte  <otte@gnome.org>
21441
21442         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_private):
21443         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
21444         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
21445           get rid of non-standard "..." ranges in case statements.
21446
21447 2004-03-27  Martin Soto  <martinsoto@users.sourceforge.net>
21448
21449         * gst/mpegstream/gstmpegdemux.c:
21450         * gst/mpegstream/gstmpegdemux.h: Complete overhaul. All DVD
21451         specific functionality split to the new dvddemux element.
21452         * gst/mpegstream/gstdvddemux.c:
21453         * gst/mpegstream/gstdvddemux.h: New demultiplexer for DVD (VOB)
21454         streams, derived from mpegdemux.
21455         * gst/mpegstream/gstmpegparse.c: Discontinuity handling cleaned
21456         up. SCR based timestamp rewriting can be turned off (will probably
21457         completely disappear soon).
21458         * ext/dvdnav/dvdnavsrc.c: Changes resulting from a few months
21459         hacking. General cleanup. All printf statements replaced by
21460         debugging messages. Almost complete libdvdnav support.
21461         (dvdnavsrc_class_init): Got rid of unnecessary signals (replaced
21462         by events. New properties for audio and subpicture languages.
21463         (dvdnavsrc_update_highlight): Now uses events.
21464         (dvdnavsrc_user_op): Cleaned up.
21465         (dvdnavsrc_get): Renamed to dvdnavsrc_loop (element is now loop
21466         based). Lots of cleanup, and propper support for most libdvdnav
21467         events.
21468         (dvdnavsrc_make_dvd_event): New function.
21469         (dvdnavsrc_make_dvd_nav_packet_event): New function.
21470         (dvdnavsrc_make_clut_change_event): New function.
21471
21472 2004-03-26  Benjamin Otte  <otte@gnome.org>
21473
21474         * gst/typefind/gsttypefindfunctions.c: (theora_type_find):
21475           fix bug where typefinding would claim it's theora whenever less then
21476           7 bytes of data were available
21477
21478 2004-03-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21479
21480         * gst/law/alaw-decode.c: (alawdec_getcaps), (alawdec_link),
21481         (gst_alawdec_base_init), (gst_alawdec_class_init),
21482         (gst_alawdec_init), (gst_alawdec_chain):
21483         * gst/law/alaw-encode.c: (alawenc_getcaps), (alawenc_link),
21484         (gst_alawenc_base_init), (gst_alawenc_class_init),
21485         (gst_alawenc_init), (gst_alawenc_chain):
21486         * gst/law/mulaw-decode.c: (mulawdec_getcaps), (mulawdec_link),
21487         (gst_mulawdec_base_init), (gst_mulawdec_class_init),
21488         (gst_mulawdec_init), (gst_mulawdec_chain):
21489         * gst/law/mulaw-encode.c: (mulawenc_getcaps), (mulawenc_link),
21490         (gst_mulawenc_base_init), (gst_mulawenc_class_init),
21491         (gst_mulawenc_init), (gst_mulawenc_chain):
21492           Fix capsnego in all four, remove the unused property functions and
21493           simplify the chain functions slightly. I guess we could use macros
21494           or something similar for those, since the code is so similar, but
21495           I'm currently too lazy...
21496
21497 2004-03-24  David Schleef  <ds@schleef.org>
21498
21499         * sys/oss/gstosselement.c: (gst_osselement_sync_parms),
21500         (gst_osselement_close_audio), (gst_osselement_probe_caps),
21501         (gst_osselement_get_format_structure),
21502         (gst_osselement_rate_probe_check), (gst_osselement_rate_add_range),
21503         (gst_osselement_rate_check_rate), (gst_osselement_rate_add_rate),
21504         (gst_osselement_rate_int_compare): Add code to handle rate probing
21505         (bug #120883)
21506         * sys/oss/gstosselement.h: same
21507         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_getcaps):
21508         Use rate probing provided by osselement.
21509         * sys/oss/gstosssrc.c: (gst_osssrc_init), (gst_osssrc_getcaps): same
21510
21511 2004-03-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21512
21513         * ext/xvid/gstxvidenc.c: (gst_xvidenc_set_property),
21514         (gst_xvidenc_get_property):
21515           ulong/int mess-up.
21516
21517 2004-03-24  David Schleef  <ds@schleef.org>
21518
21519         * ext/speex/gstspeexdec.c: (gst_speexdec_base_init),
21520         (gst_speexdec_init):
21521         * ext/speex/gstspeexenc.c: (gst_speexenc_base_init),
21522         (gst_speexenc_init):  Create the pad template correctly (from
21523         the static pad template, not a NULL pointer.)
21524
21525 2004-03-25  Benjamin Otte  <otte@gnome.org>
21526
21527         * gst/debug/Makefile.am:
21528         * gst/debug/breakmydata.c:
21529           add element that quasi-randomly changes bytes in the stream.
21530           Intended use is robustness checking of demuxers and decoders in
21531           media tests.
21532
21533 2004-03-24  Benjamin Otte  <otte@gnome.org>
21534
21535         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
21536         (gst_alsa_probe_hw_params):
21537         * ext/alsa/gstalsa.h:
21538           debugging output fixes
21539
21540 2004-03-24  Benjamin Otte  <otte@gnome.org>
21541
21542         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_set_property):
21543           don't g_return_if_fail if element is PLAYING, fail silently as every
21544           other element.
21545         * gst/effectv/gstquark.c: (gst_quarktv_chain):
21546           only fix needed for cast lvalue issues in gst-plugins
21547         * gst/volenv/gstvolenv.c: (gst_volenv_init):
21548           add proxy_getcaps
21549
21550 2004-03-24  Benjamin Otte  <otte@gnome.org>
21551
21552         * gst/level/gstlevel.c: (gst_level_init):
21553           add proxying getcaps function, so level doesn't advertise impossible
21554           caps
21555
21556 2004-03-24  David Schleef  <ds@schleef.org>
21557
21558         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
21559         (gst_qtdemux_loop_header), (qtdemux_parse_moov), (qtdemux_parse),
21560         (qtdemux_node_dump_foreach), (qtdemux_dump_mvhd),
21561         (qtdemux_dump_tkhd), (qtdemux_dump_elst), (qtdemux_dump_mdhd),
21562         (qtdemux_dump_hdlr), (qtdemux_dump_vmhd), (qtdemux_dump_dref),
21563         (qtdemux_dump_stsd), (qtdemux_dump_stts), (qtdemux_dump_stss),
21564         (qtdemux_dump_stsc), (qtdemux_dump_stsz), (qtdemux_dump_stco),
21565         (qtdemux_dump_co64), (qtdemux_dump_dcom), (qtdemux_dump_cmvd),
21566         (qtdemux_parse_tree), (qtdemux_parse_trak):  Fix debugging
21567         messages.  Divide the chunk size by the compression ratio
21568         (needed for MACE audio)
21569
21570 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21571
21572         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
21573           Fix buffer overflow read error.
21574
21575 2004-03-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21576
21577         * ext/alsa/gstalsa.h:
21578           Remove unused entry.
21579         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps):
21580           Add cinepak.
21581         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
21582         (gst_videodrop_link), (gst_videodrop_chain):
21583           Fix, sort of. Was horribly broken with new capsnego. Bah...
21584
21585 2004-03-23  Jeremy Simon  <jesimon@libertysurf.fr>
21586
21587         * gst/typefind/gsttypefindfunctions.c: (ape_type_find),
21588         (plugin_init):
21589         Add a monkeysaudio typefind function
21590
21591 2004-03-23  Johan Dahlin  <johan@gnome.org>
21592
21593         * gst-libs/gst/play/play.c (gst_play_audio_fixate)
21594         (gst_play_video_fixate): Check so the structure has the field
21595         before trying to fixate them, this makes it possible to have
21596         fakesinks for video and audio output without printing errors on
21597         the output console.
21598
21599 2004-03-22  David Schleef  <ds@schleef.org>
21600
21601         * sys/oss/Makefile.am:
21602         * sys/oss/oss_probe.c: (main), (probe_check), (add_range),
21603         (check_rate), (add_rate):  Rate probing test app.
21604
21605 2004-03-21  Benjamin Otte  <otte@gnome.org>
21606
21607         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
21608         (_fixate_caps_to_int), (gst_audio_convert_fixate):
21609           add a fixation function that pretty much does the right thing (fixes
21610           #137556)
21611
21612 2004-03-20  David I. Lehn  <dlehn@users.sourceforge.net>
21613
21614         * configure.ac: GST_PACKAGE default: s/GStreamer/GStreamer Plugins/
21615
21616 2004-03-20  Tim-Phillip M??ller <t.i.m@zen.co.uk>
21617
21618         reviewed by: Benjamin Otte  <otte@gnome.org>
21619
21620         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
21621           terminate gst_event_new_discontinuous correctly (fixes parts of
21622           #137711)
21623
21624 2004-03-19  David Schleef  <ds@schleef.org>
21625
21626         * gst-libs/gst/Makefile.am:  Enable xoverlay unconditionally,
21627         since it doesn't depend on X, and it's part of our ABI.
21628
21629 2004-03-19  Iain <iain@prettypeople.org>
21630
21631         * gst/interleave/deinterleave.c (deinterleave_sink_link): Use the
21632         is_int in the structure, not the local variable.
21633
21634 2004-03-19  David Schleef  <ds@schleef.org>
21635
21636         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_change_state),
21637         (gst_rfbsrc_init), (gst_rfbsrc_getcaps), (gst_rfbsrc_fixate),
21638         (gst_rfbsrc_link), (gst_rfbsrc_paint_rect), (gst_rfbsrc_get):
21639         Improvements in caps negotiation.
21640
21641 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21642
21643         * po/LINGUAS:
21644         * po/af.po:
21645           adding Afrikaans (Petri Jooste)
21646
21647 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21648
21649         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21650         (gst_ffmpegcolorspace_chain):
21651         throw error instead of g_critical (#137588)
21652
21653 2004-03-18  Thomas Vander Stichele  <thomas at apestaart dot org>
21654
21655         * Makefile.am:
21656         * configure.ac:
21657           dist common and m4 correctly
21658         * po/sv.po:
21659
21660 2004-03-17  David Schleef  <ds@schleef.org>
21661
21662         * pkgconfig/gstreamer-media-info.pc.in:  Add Version.
21663         (bug #137348)
21664
21665 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21666
21667         * po/LINGUAS:
21668         * po/sv.po:
21669           adding Swedish translation (Christian Rose)
21670
21671 2004-03-17  Thomas Vander Stichele  <thomas at apestaart dot org>
21672
21673         * Makefile.am: use release.mak
21674
21675 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21676
21677         * common/ChangeLog:
21678         * common/gst-autogen.sh:
21679           add some explanation about the version detection
21680         * configure.ac:
21681           fix X check
21682
21683 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21684
21685         * configure.ac: bump nano to 1
21686
21687 === release 0.8.0 ===
21688
21689 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21690
21691         * configure.ac: release 0.8.0, "Pharmaceutical Itch"
21692
21693 2004-03-16  Thomas Vander Stichele  <thomas at apestaart dot org>
21694
21695         * configure.ac:
21696           update libtool version
21697         * gst-libs/gst/media-info/Makefile.am:
21698           actually use libtool version
21699
21700 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21701
21702         * configure.ac: fix speex detection to work with 1.0 but not 1.1
21703
21704 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21705
21706         * configure.ac:
21707         * gst-plugins.spec.in:
21708         * pkgconfig/Makefile.am:
21709         * pkgconfig/gstreamer-gconf-uninstalled.pc.in:
21710         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
21711         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
21712         * pkgconfig/gstreamer-libs.pc.in:
21713         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
21714         * pkgconfig/gstreamer-play-uninstalled.pc.in:
21715         * pkgconfig/gstreamer-plugins-uninstalled.pc.in:
21716         * pkgconfig/gstreamer-plugins.pc.in:
21717           remove @VERSION@ from some of the pc files since core and plugins
21718           are decoupled.
21719           created gstreamer-plugins.pc as it's a better name, but keeping
21720           -libs around for now to get fixes upstream done first.
21721
21722 2004-03-15  Julien MOUTTE <julien@moutte.net>
21723
21724         * gst-libs/gst/play/play.c: (gst_play_get_framerate),
21725         (gst_play_get_sink_element): First draft of gst_play_get_framerate.
21726         * gst-libs/gst/play/play.h:
21727
21728 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21729
21730         * *.c, *.cc: don't mix tabs and spaces
21731
21732 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21733
21734         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
21735           use the new ffmpegcolorspace
21736         * gst-plugins.spec.in:
21737           package new colorspace and media-info
21738         * configure.ac:
21739         * pkgconfig/Makefile.am:
21740           fix some more disting issues
21741         * pkgconfig/gstreamer-media-info-uninstalled.pc.in:
21742         * pkgconfig/gstreamer-media-info.pc.in:
21743           generate media-info pc files
21744
21745 2004-03-15  Johan Dahlin  <johan@gnome.org>
21746
21747         * *.h: Revert indenting
21748
21749 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21750
21751         * configure.ac:
21752           adding ffmpegcolorspace element
21753         * gst/ffmpegcolorspace/Makefile.am:
21754         * gst/ffmpegcolorspace/avcodec.h:
21755         * gst/ffmpegcolorspace/common.h:
21756         * gst/ffmpegcolorspace/dsputil.c: (dsputil_static_init):
21757         * gst/ffmpegcolorspace/dsputil.h:
21758         * gst/ffmpegcolorspace/gstffmpeg.c: (plugin_init):
21759         * gst/ffmpegcolorspace/gstffmpegcodecmap.c:
21760         (gst_ffmpeg_pixfmt_to_caps), (gst_ffmpeg_pix_fmt_to_caps),
21761         (gst_ffmpeg_caps_to_pix_fmt):
21762         * gst/ffmpegcolorspace/gstffmpegcodecmap.h:
21763         * gst/ffmpegcolorspace/gstffmpegcolorspace.c:
21764         (gst_ffmpegcolorspace_caps_remove_format_info),
21765         (gst_ffmpegcolorspace_getcaps), (gst_ffmpegcolorspace_pad_link),
21766         (gst_ffmpegcolorspace_get_type), (gst_ffmpegcolorspace_base_init),
21767         (gst_ffmpegcolorspace_class_init), (gst_ffmpegcolorspace_init),
21768         (gst_ffmpegcolorspace_chain), (gst_ffmpegcolorspace_change_state),
21769         (gst_ffmpegcolorspace_set_property),
21770         (gst_ffmpegcolorspace_get_property),
21771         (gst_ffmpegcolorspace_register):
21772         * gst/ffmpegcolorspace/imgconvert.c:
21773         (avcodec_get_chroma_sub_sample), (avcodec_get_pix_fmt_name),
21774         (avcodec_get_pix_fmt), (avpicture_fill), (avpicture_layout),
21775         (avpicture_get_size), (avcodec_get_pix_fmt_loss),
21776         (avg_bits_per_pixel), (avcodec_find_best_pix_fmt1),
21777         (avcodec_find_best_pix_fmt), (img_copy_plane), (img_copy),
21778         (yuv422_to_yuv420p), (yuv422_to_yuv422p), (yuv422p_to_yuv422),
21779         (C_JPEG_TO_CCIR), (img_convert_init), (img_apply_table),
21780         (shrink41), (shrink21), (shrink12), (shrink22), (shrink44),
21781         (grow21_line), (grow41_line), (grow21), (grow22), (grow41),
21782         (grow44), (conv411), (gif_clut_index), (build_rgb_palette),
21783         (bitcopy_n), (mono_to_gray), (monowhite_to_gray),
21784         (monoblack_to_gray), (gray_to_mono), (gray_to_monowhite),
21785         (gray_to_monoblack), (avpicture_alloc), (avpicture_free),
21786         (is_yuv_planar), (img_convert), (get_alpha_info_pal8),
21787         (img_get_alpha_info), (deinterlace_line),
21788         (deinterlace_line_inplace), (deinterlace_bottom_field),
21789         (deinterlace_bottom_field_inplace), (avpicture_deinterlace):
21790         * gst/ffmpegcolorspace/imgconvert_template.h:
21791         * gst/ffmpegcolorspace/mem.c: (av_malloc), (av_realloc), (av_free):
21792         * gst/ffmpegcolorspace/mmx.h:
21793         * gst/ffmpegcolorspace/utils.c: (avcodec_init):
21794           adding ffmpegcolorspace element supplied by Ronald after cleaning
21795           up and pulling in the right bits of upstream source.
21796           I'm sure a better C/compiler wizard could do some cleaning up (for
21797           example use GLIB's malloc stuff), but as a first pass this
21798           works very well
21799
21800 2004-03-15  Thomas Vander Stichele  <thomas at apestaart dot org>
21801
21802         * ext/alsa/gstalsa.h:
21803           I assume Ronald forgot to commit the change to have cardname
21804           as a struct member.  Expect some public spanking at the next
21805           opportunity.
21806
21807 2004-03-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21808
21809         * ext/alsa/gstalsa.c: (gst_alsa_get_property),
21810         (gst_alsa_open_audio), (gst_alsa_close_audio):
21811         * ext/alsa/gstalsa.c:
21812           Don't open the device if we're a mixer (= padless).
21813         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_class_init),
21814         (gst_alsa_mixer_init), (gst_alsa_mixer_open),
21815         (gst_alsa_mixer_close), (gst_alsa_mixer_change_state):
21816           Open mixer during state change rather than during object
21817           initialization. Also, get a device name. Currently in a somewhat
21818           hackish fashion, but I didn't really find something better.
21819
21820 2004-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
21821
21822         * *.c, *.h: run gst-indent
21823
21824 2004-03-14  Benjamin Otte  <otte@gnome.org>
21825
21826         * gst/modplug/gstmodplug.cc:
21827         * gst/modplug/gstmodplug.h:
21828           set correct timestamps on outgoing buffers
21829
21830 2004-03-14  Benjamin Otte  <otte@gnome.org>
21831
21832         * gst/modplug/gstmodplug.cc:
21833           handle events - don't do crap when a discont arrives that's not
21834           necessary
21835           This allows correct loading and playback of mods in Rhythmbox
21836
21837 2004-03-14  Benjamin Otte  <otte@gnome.org>
21838
21839         * configure.ac:
21840         * gst-libs/gst/gconf/Makefile.am:
21841         * pkgconfig/Makefile.am:
21842           move gstreamer-gconf pkgconfig files to pkgconfig/ dir. Make sure
21843           they get rebuilt properly
21844         * configure.ac:
21845           when checking for vorbis, try pkgconfig first.
21846         * gst/modplug/gstmodplug.cc:
21847           add fixate function
21848
21849 2004-03-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21850
21851         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):
21852           Fix for obvious mistake, where we first shift the offset and then
21853           read a samplesize element assuming the old offset. Note that this
21854           part still has something weird, i.e. my movies containing those
21855           don't actually play well, but at least there's something that looks
21856           like sound now.
21857
21858 2004-03-14  Jan Schmidt  <thaytan@mad.scientist.com>
21859         * gst/typefind/gsttypefindfunctions.c: (speex_type_find),
21860         (plugin_init):
21861         Add a typefind function for speex format
21862
21863 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21864
21865         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps),
21866         (gst_asf_demux_setup_pad):
21867           Use 25fps as our "fake" fps value (marked for fixage in 0.9.x)
21868           instead of 0. Reason is simple: some elements have a fps range
21869           of 1-max instead of 0-max. So now ASF video actually works.
21870
21871 2004-03-13  Thomas Vander Stichele  <thomas at apestaart dot org>
21872
21873         * po/LINGUAS:
21874         * po/sr.po:
21875           adding serbian as a language
21876
21877 2004-03-13  Benjamin Otte  <otte@gnome.org>
21878
21879         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
21880           return taglist correctly from _get function, don't gst_pad_push it.
21881           (fixes #137042)
21882
21883 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
21884         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
21885
21886 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21887
21888         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_free_list):
21889         * ext/alsa/gstalsamixertrack.c: (gst_alsa_mixer_track_class_init),
21890         (gst_alsa_mixer_track_new):
21891         * ext/alsa/gstalsamixertrack.h:
21892           Fix ancient leftovers... MixerTrack is a GObject.
21893
21894 2004-03-13  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21895
21896         * ext/alsa/gstalsa.c: (gst_alsa_class_probe_devices):
21897         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
21898           Don't block during probing...
21899
21900 2004-03-12  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21901
21902         * ext/alsa/gstalsa.c: (gst_alsa_get_type), (gst_alsa_class_init),
21903         (gst_alsa_get_property), (gst_alsa_probe_get_properties),
21904         (gst_alsa_class_probe_devices), (gst_alsa_class_list_devices),
21905         (gst_alsa_probe_probe_property), (gst_alsa_probe_needs_probe),
21906         (gst_alsa_probe_get_values), (gst_alsa_probe_interface_init),
21907         (gst_alsa_open_audio), (gst_alsa_close_audio):
21908         * ext/alsa/gstalsa.h:
21909           Add propertyprobe interface implementation, add some device-name
21910           property, all this so that it looks good in gnome-volume-control.
21911
21912 2004-03-12  David Schleef  <ds@schleef.org>
21913
21914         * configure.ac: the Hermes library controls hermescolorspace, not
21915         colorspace.
21916         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
21917         (gst_mpeg2dec_init): minor pet peeve: disable code with #ifdef,
21918         not /* */
21919         * ext/sdl/sdlvideosink.c: Change XID to unsigned long.
21920         * ext/sdl/sdlvideosink.h: ditto.
21921         * gst/colorspace/gstcolorspace.c: Fix old comments about Hermes
21922
21923 2004-03-12  Benjamin Otte  <otte@gnome.org>
21924
21925         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_set_xwindow_id),
21926         (gst_x_overlay_got_xwindow_id):
21927         * gst-libs/gst/xoverlay/xoverlay.h:
21928           replace XID with unsigned long to get rid of the xlibs dependency in
21929           XOverlay (fixes #137004)
21930
21931 2004-03-13  Jan Schmidt  <thaytan@mad.scientist.com>
21932         * gst/effectv/gstaging.c: (gst_agingtv_base_init),
21933         (gst_agingtv_setup):
21934         * gst/effectv/gstdice.c: (gst_dicetv_get_type),
21935         (gst_dicetv_base_init), (gst_dicetv_class_init),
21936         (gst_dicetv_setup), (gst_dicetv_init), (gst_dicetv_draw):
21937         * gst/effectv/gstedge.c: (gst_edgetv_get_type),
21938         (gst_edgetv_base_init), (gst_edgetv_class_init), (gst_edgetv_init),
21939         (gst_edgetv_setup), (gst_edgetv_rgb32):
21940         * gst/effectv/gsteffectv.c:
21941         * gst/effectv/gstquark.c: (gst_quarktv_link), (gst_quarktv_init),
21942         (gst_quarktv_set_property):
21943         * gst/effectv/gstrev.c: (gst_revtv_get_type),
21944         (gst_revtv_base_init), (gst_revtv_class_init), (gst_revtv_init),
21945         (gst_revtv_setup), (gst_revtv_rgb32):
21946         * gst/effectv/gstshagadelic.c: (gst_shagadelictv_get_type),
21947         (gst_shagadelictv_base_init), (gst_shagadelictv_class_init),
21948         (gst_shagadelictv_init), (gst_shagadelictv_setup),
21949         (gst_shagadelictv_rgb32):
21950         * gst/effectv/gstvertigo.c: (gst_vertigotv_get_type),
21951         (gst_vertigotv_base_init), (gst_vertigotv_class_init),
21952         (gst_vertigotv_setup), (gst_vertigotv_init), (gst_vertigotv_rgb32):
21953         * gst/effectv/gstwarp.c:
21954         Port everything that can be ported to videofilter and fix up the caps.
21955         Can someone with a big-endian machine please check these?
21956
21957 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21958
21959         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_get_time),
21960         (gst_osssink_chain), (gst_osssink_change_state):
21961           Latest fixes for A/V sync, audio playback and such. This is about
21962           all... MPEG playback issues are mostly related to the async build-
21963           up of MPEG files, I cannot fix that. Use basicgthread to solve it.
21964
21965 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21966
21967         patch from: Stephane Loeuillet
21968
21969         * configure.ac:
21970           use pkg-config for some libraries, falling back to the old .m4 way
21971           (fixes #131270)
21972         * m4/libdv.m4:
21973           removed
21974
21975 2004-03-10  Thomas Vander Stichele  <thomas at apestaart dot org>
21976
21977         * configure.ac:
21978         * tools/Makefile.am:
21979         * tools/Makefile.in:
21980         * tools/gst-launch-ext-m.m:
21981         * tools/gst-launch-ext.1.in:
21982         * tools/gst-visualise-m.m:
21983         * tools/gst-visualise.1:
21984         * tools/gst-visualise.1.in:
21985           reorganizing generation of script tools
21986
21987 2004-03-10  Ronald Bultje  <rbultje@ronald.bitfreak.net>
21988
21989         * ext/divx/gstdivxdec.c:
21990           Downgrade priority. We prefer ffdec_mpeg4.
21991         * ext/faad/gstfaad.c: (gst_faad_srcgetcaps), (gst_faad_srcconnect),
21992         (gst_faad_chain), (gst_faad_change_state):
21993           Fix capsnego. Doesn't work for some sounds because we don't have
21994           a 5:1 to stereo element.
21995         * ext/xvid/gstxvid.c: (plugin_init):
21996           Add priority.
21997         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
21998         (gst_osssink_change_state):
21999           Add discont handling.
22000
22001 2004-03-09  Colin Walters  <walters@verbum.org>
22002
22003         * gst/audioconvert/gstaudioconvert.c: Fix typo in width 8
22004         conversion.
22005
22006 2004-03-09  Benjamin Otte  <otte@gnome.org>
22007
22008         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
22009           the signals take 2 arguments
22010
22011 2004-03-09  David Schleef  <ds@schleef.org>
22012
22013         * ext/alsa/gstalsa.c: (gst_alsa_request_new_pad),
22014         (gst_alsa_fixate): Add fixate function.  (bug #136686)
22015         * ext/alsa/gstalsa.h:
22016         * ext/alsa/gstalsasink.c: (gst_alsa_sink_init):
22017
22018 2004-03-09  Benjamin Otte  <otte@gnome.org>
22019
22020         * ext/mikmod/gstmikmod.c: (gst_mikmod_init), (gst_mikmod_loop),
22021         (gst_mikmod_change_state):
22022         * ext/mikmod/gstmikmod.h:
22023           make mikmod's loop function not loop infinitely and call
22024           gst_element_yield anymore
22025         * gst/modplug/gstmodplug.cc:
22026           fix pad negotiation (fixes #136590)
22027
22028 2004-03-09  David Schleef  <ds@schleef.org>
22029
22030         * ext/lcs/Makefile.am:  Fix so that the lcs colorspace plugin
22031         doesn't conflict with the internal colorspace plugin.
22032         * gst-libs/gst/audio/make_filter:  Use `` instead of $() to
22033         satisfy the crappy-ass shell shipped by a certain vendor.
22034         * gst/videofilter/make_filter: same (bug #135299)
22035
22036 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22037
22038         * configure.ac: bump nano to 1
22039
22040 === release 0.7.6 ===
22041
22042 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22043
22044         * configure.in: releasing 0.7.6, "There"
22045
22046 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22047
22048         * pkgconfig/gstreamer-play-uninstalled.pc.in:
22049         * pkgconfig/gstreamer-play.pc.in:
22050           synchronize the two
22051
22052 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22053
22054         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_base_init),
22055         (cdparanoia_open), (cdparanoia_event):
22056           fix/add error handling
22057         * po/POTFILES.in:
22058           add cdparanoia source
22059         * tools/Makefile.am:
22060           make scripts executable
22061
22062 2004-03-09  Thomas Vander Stichele  <thomas at apestaart dot org>
22063
22064         * configure.ac:
22065         * ext/vorbis/Makefile.am:
22066         * sys/Makefile.am:
22067           remove id3types, vorbisfile and xvideosink from the build (#133783)
22068
22069 2004-03-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22070
22071         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
22072           Fix metadata read crash (#136537).
22073
22074 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22075
22076         * gst-libs/gst/media-info/media-info-priv.c: (gmi_set_mime):
22077         * gst-libs/gst/media-info/media-info.c: (gst_media_info_read):
22078           adding mime types, fixing the one-stop function
22079
22080 2004-03-08  Christian Schaller <Uraeus@gnome.org>
22081
22082         * ext/nas/nassink.c and /ext/nas/nassink.h:
22083         More NAS love from Arwed von Merkatz
22084         So lets all sing 'Can you feel the NAS tonight'
22085
22086 2004-03-08  Christian Schaller <Uraeus@gnome.org>
22087
22088         * tools/gst-launch-ext.in:
22089         Replace vorbisfile with oggdemux/vorbisdec/audioconvert
22090
22091 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22092
22093         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
22094         (gst_mpeg2dec_init):
22095         remove the user_data pad for now, because it is being used in
22096         fixating causing MPEG playback to fixate on 1000 Hz for playback.
22097         If someone knows how to fix this properly, please do.
22098
22099 2004-03-08  Thomas Vander Stichele  <thomas at apestaart dot org>
22100
22101         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
22102         (gst_osssink_get_time):
22103         add a warning, IMO this won't get triggered anymore, remove later
22104
22105 2004-03-07  David Schleef  <ds@schleef.org>
22106
22107         * gst/qtdemux/qtdemux.c: (qtdemux_video_caps):  Added Cinepak
22108         format (bug #136470)
22109
22110 2004-03-07  Thomas Vander Stichele  <thomas at apestaart dot org>
22111
22112         * gst-libs/Makefile.am:
22113         * gst-libs/gst/media-info/Makefile.am:
22114         * gst-libs/gst/media-info/media-info-priv.c: (found_tag_callback),
22115         (error_callback), (gst_media_info_error_create),
22116         (gst_media_info_error_element), (gmip_init), (gmip_reset),
22117         (gmi_clear_decoder), (gmip_find_type_pre), (gmip_find_type):
22118         * gst-libs/gst/media-info/media-info-priv.h:
22119         * gst-libs/gst/media-info/media-info-test.c: (main):
22120         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
22121         (gst_media_info_class_init), (gst_media_info_instance_init),
22122         (gst_media_info_set_source), (gst_media_info_read_with_idler),
22123         (gst_media_info_read_idler), (gst_media_info_read):
22124         * gst-libs/gst/media-info/media-info.h:
22125         fixed, should work now
22126
22127 2004-03-07  Christian Schaller <Uraeus@gnome.org>
22128
22129         * ext/nas/nassink.c:
22130         A bunch of NAS fixes from Arwed von Merkatz
22131
22132 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22133
22134         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream),
22135         (qtdemux_parse_trak):
22136           Fix crash (j might be greater than n_samples, in which case we're
22137           writing outside the allocated space for the array) and memleak.
22138
22139 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22140
22141         * sys/oss/gstosssink.c: (gst_osssink_chain):
22142           And another caller that couldn't handle delay < 0 (unsigned
22143           integer overflow). Video now continues playing on an audio
22144           buffer underrun, and the clock continues working. Audio still
22145           stalls.
22146
22147 2004-03-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22148
22149         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
22150         (gst_osssink_get_time):
22151           get_delay() may return values lower than 0. In those cases, we
22152           should not actually cast to *unsigned* int64, that will break
22153           stuff horribly. In my case, it screwed up A/V sync in movies
22154           in totem rather badly.
22155
22156 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
22157
22158         * ext/faac/gstfaac.c: (gst_faac_chain):
22159         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
22160         * ext/libpng/gstpngenc.c: (user_write_data):
22161         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
22162         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
22163         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
22164         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
22165         Fix several misuse of gst_buffer_merge (it doesn't take ownership
22166         of any buffer), should fix some leaks. I hope I didn't unref buffers
22167         that shouldn't be...
22168
22169 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22170
22171         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
22172         (deep_notify_callback), (tag_flag_score), (found_tag_callback),
22173         (error_callback), (gmi_reset), (gmi_seek_to_track),
22174         (gmi_get_decoder), (gmi_set_mime), (gmip_find_type_pre),
22175         (gmip_find_type_post), (gmip_find_stream_post),
22176         (gmip_find_track_streaminfo_post):
22177         * gst-libs/gst/media-info/media-info-priv.h:
22178         * gst-libs/gst/media-info/media-info-test.c: (print_tag),
22179         (info_print), (main):
22180         * gst-libs/gst/media-info/media-info.c:
22181         (gst_media_info_error_create), (gst_media_info_error_element),
22182         (gst_media_info_instance_init), (gst_media_info_get_property),
22183         (gst_media_info_new), (gst_media_info_set_source),
22184         (gst_media_info_read_idler), (gst_media_info_read):
22185         * gst-libs/gst/media-info/media-info.h:
22186           first pass at making this work again.  This seems to work on
22187           tagged ogg/vorbis and mp3 files.
22188
22189 2004-03-06  Benjamin Otte  <otte@gnome.org>
22190
22191         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
22192           fix huge leak: gst_buffer_merge doesn't unref the first argument
22193           itself.
22194
22195 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22196
22197         * ext/mad/gstmad.c: (gst_mad_class_init), (gst_mad_update_info):
22198           report layer/mode/emphasis
22199
22200 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
22201
22202         * ext/mad/gstmad.c: (gst_mad_chain): fixed caps leak
22203
22204 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22205
22206         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_new):
22207           signal serial
22208
22209 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22210
22211         * ext/vorbis/vorbis.c: (plugin_init):
22212         * ext/vorbis/vorbisdec.c: (vorbis_dec_get_formats),
22213         (gst_vorbis_dec_init), (vorbis_dec_event):
22214         add debug category
22215         make vorbisdec handle _BYTE and _TIME queries
22216
22217 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
22218
22219         * ext/mad/gstmad.c: (gst_mad_chain): send the average bitrate read
22220           from the xing header
22221
22222 2004-03-06  Benjamin Otte  <otte@gnome.org>
22223
22224         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_getcaps),
22225         (gst_audio_convert_link), (gst_audio_convert_change_state),
22226         (gst_audio_convert_buffer_from_default_format):
22227           do conversions from/to float correctly, fix some caps nego errors,
22228           export correct supported caps in template and getcaps, use correct
22229           caps in try_set_caps functions
22230
22231 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
22232
22233         For some reason, I only committed a ChangeLog entry yesterday and
22234         not the corresponding code...
22235         * ext/mad/gstmad.c: Fix detection of Xing headers
22236         * gst/tags/gstid3tag.c: Changes to support TLEN tags
22237
22238 2004-03-06  Benjamin Otte  <otte@gnome.org>
22239
22240         * ext/ogg/gstoggdemux.c: (gst_ogg_get_pad_by_pad),
22241         (gst_ogg_demux_src_query):
22242           make sure to handle the case where there's no current chain
22243           gracefully.
22244
22245 2004-03-05  David Schleef  <ds@schleef.org>
22246
22247         * ext/aalib/gstaasink.c: (gst_aasink_fixate), (gst_aasink_init):
22248         Add fixate function. (bug #131128)
22249         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_init),
22250         (gst_sdlvideosink_fixate):  Add fixate function.
22251         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
22252         Fix attempt to print a non-pointer using GST_PTR_FORMAT.
22253         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt):
22254         Fix missing break that was causing ulaw to be interpreted as
22255         raw int.
22256
22257 2004-03-05  David Schleef  <ds@schleef.org>
22258
22259         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice):
22260         Fix code that ignores return value of gst_buffer_merge().
22261         (bug #114560)
22262         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_descramble_segment):
22263         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_add_slice): same
22264         * testsuite/gst-lint:  Check for above.
22265
22266 2004-03-05  David Schleef  <ds@schleef.org>
22267
22268         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):  Check for unfixed
22269         caps and throw an element error.  (bug #136334)
22270
22271 2004-03-05  David Schleef  <ds@schleef.org>
22272
22273         * ext/faad/gstfaad.c: (gst_faad_init), (gst_faad_srcgetcaps),
22274         (gst_faad_chain): Fix negotiation.
22275         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_handle_src_event): Add
22276         key and button events.
22277         * gst-libs/gst/floatcast/floatcast.h: Fix a minor bug in this
22278         dung heap of code.
22279         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in: gstgconf
22280         depends on gconf
22281         * gst-libs/gst/gconf/gstreamer-gconf.pc.in: same
22282         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
22283         (gst_play_video_fixate), (gst_play_audio_fixate): Add a fixate
22284         function to encourage better negotiation, particularly between
22285         audioconvert and osssink.
22286         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
22287         * gst/qtdemux/qtdemux.c: (qtdemux_parse_trak):  Make some debugging
22288         more important.
22289         * gst/typefind/gsttypefindfunctions.c:  Fix mistake in flash
22290         typefinding.
22291         * gst/vbidec/vbiscreen.c:  Add glib header
22292         * pkgconfig/gstreamer-play.pc.in:  Depends on gst-interfaces.
22293
22294 2004-03-06  Christophe Fergeau  <teuf@users.sourceforge.net>
22295
22296         * ext/mad/gstmad.c: Fix detection of Xing headers
22297         * gst/tags/gstid3tag.c: Changes to support TLEN tags
22298
22299 2004-03-06  Thomas Vander Stichele  <thomas at apestaart dot org>
22300
22301         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
22302         (gst_wavparse_pad_convert), (gst_wavparse_pad_query):
22303           debug updates
22304
22305 2004-03-06  Christophe Fergeau  <teuf@gnome.org>
22306
22307         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
22308         * ext/mad/gstmad.c: (gst_mad_init), (is_xhead),
22309         (mpg123_parse_xing_header), (gst_mad_chain): parse Xing header in vbr
22310         files, and report the parsed length as a GST_TAG_DURATION tag.
22311         * gst/tags/gstid3tag.c: support TLEN (duration) tag
22312
22313 2004-03-05  Benjamin Otte  <otte@gnome.org>
22314
22315         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_channels):
22316           convert channels correctly. convert correctly to unsigned.
22317
22318 2004-03-05  Julien MOUTTE <julien@moutte.net>
22319
22320         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_change_state): Check if
22321         we have a window before clearing it.
22322
22323 2004-03-05  Julien MOUTTE <julien@moutte.net>
22324
22325         * sys/ximage/ximagesink.c: (gst_ximagesink_change_state): Check if we
22326         have a window before clearing it.
22327
22328 2004-03-05  Thomas Vander Stichele  <thomas at apestaart dot org>
22329
22330         * gconf/gstreamer.schemas.in:
22331         * gst-libs/gst/gconf/Makefile.am:
22332           version installation path the same way as for 0.6
22333         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
22334         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
22335         * pkgconfig/gstreamer-play-uninstalled.pc.in:
22336           remove comment that was fixed
22337
22338 2004-03-05  David Schleef  <ds@schleef.org>
22339
22340         * gst/qtdemux/qtdemux.c: (gst_qtdemux_get_src_formats),
22341         (gst_qtdemux_src_convert), (gst_qtdemux_get_src_query_types),
22342         (gst_qtdemux_get_event_mask), (gst_qtdemux_handle_src_query),
22343         (gst_qtdemux_handle_src_event), (gst_qtdemux_add_stream):
22344         Add prototype code for handling seeking and querying.
22345
22346 2004-03-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22347
22348         * examples/gstplay/player.c: (main):
22349           Initialize variables to NULL. Prevents a segfault because the
22350           (uninitialized) variable is not NULL, resulting in a crash on
22351           trying to reach error->message.
22352
22353 2004-03-05  Benjamin Otte  <otte@gnome.org>
22354
22355         * gst/audioconvert/gstaudioconvert.c:
22356         (gst_audio_convert_buffer_to_default_format):
22357         make float=>int conversion work correctly even in cornercases.
22358
22359 2004-03-04  David I. Lehn  <dlehn@users.sourceforge.net>
22360
22361         * debian/README.Debian:
22362         * debian/build-deps:
22363         * debian/changelog:
22364         * debian/control:
22365         * debian/control.in:
22366         * debian/copyright:
22367         * debian/gstreamer-a52dec.files:
22368         * debian/gstreamer-aa.files:
22369         * debian/gstreamer-alsa.files:
22370         * debian/gstreamer-alsa.manpages:
22371         * debian/gstreamer-arts.files:
22372         * debian/gstreamer-artsd.files:
22373         * debian/gstreamer-audiofile.files:
22374         * debian/gstreamer-avifile.files:
22375         * debian/gstreamer-cdparanoia.files:
22376         * debian/gstreamer-colorspace.files:
22377         * debian/gstreamer-doc.files:
22378         * debian/gstreamer-dv.files:
22379         * debian/gstreamer-dvd.files:
22380         * debian/gstreamer-esd.files:
22381         * debian/gstreamer-festival.files:
22382         * debian/gstreamer-flac.files:
22383         * debian/gstreamer-gconf.conffiles:
22384         * debian/gstreamer-gconf.files:
22385         * debian/gstreamer-gconf.postinst:
22386         * debian/gstreamer-gnomevfs.files:
22387         * debian/gstreamer-gsm.files:
22388         * debian/gstreamer-http.files:
22389         * debian/gstreamer-jack.files:
22390         * debian/gstreamer-jpeg.files:
22391         * debian/gstreamer-mad.files:
22392         * debian/gstreamer-mikmod.files:
22393         * debian/gstreamer-misc.files:
22394         * debian/gstreamer-mpeg2dec.files:
22395         * debian/gstreamer-oss.files:
22396         * debian/gstreamer-plugin-apps.files:
22397         * debian/gstreamer-plugin-apps.manpages:
22398         * debian/gstreamer-plugin-libs-dev.files:
22399         * debian/gstreamer-plugin-libs.files:
22400         * debian/gstreamer-plugin-template.postinst:
22401         * debian/gstreamer-plugin-template.postrm:
22402         * debian/gstreamer-sdl.files:
22403         * debian/gstreamer-sid.files:
22404         * debian/gstreamer-vorbis.files:
22405         * debian/gstreamer-x.files:
22406         * debian/mk.control:
22407         * debian/rules:
22408         Debian package info not maintained here.
22409
22410 2004-03-04  Thomas Vander Stichele  <thomas at apestaart dot org>
22411
22412         * ext/aalib/gstaasink.c: (gst_aasink_class_init):
22413         * ext/cdaudio/gstcdaudio.c: (gst_cdaudio_class_init):
22414         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_class_init):
22415         * ext/divx/gstdivxenc.c: (gst_divxenc_class_init):
22416         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init):
22417         * ext/gsm/gstgsmenc.c: (gst_gsmenc_class_init):
22418         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_class_init):
22419         * ext/musicbrainz/gsttrm.c: (gst_musicbrainz_class_init):
22420         * ext/speex/gstspeexenc.c: (gst_speexenc_class_init):
22421         * ext/xvid/gstxvidenc.c: (gst_xvidenc_class_init):
22422         * gst-libs/gst/colorbalance/colorbalance.c:
22423         (gst_color_balance_class_init):
22424         * gst-libs/gst/colorbalance/colorbalancechannel.c:
22425         (gst_color_balance_channel_class_init):
22426         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init):
22427         * gst-libs/gst/play/play.c: (gst_play_class_init):
22428         * gst-libs/gst/propertyprobe/propertyprobe.c:
22429         (gst_property_probe_iface_init):
22430         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init):
22431         * gst-libs/gst/tuner/tunerchannel.c:
22432         (gst_tuner_channel_class_init):
22433         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init):
22434         * gst/cutter/gstcutter.c: (gst_cutter_class_init):
22435         * gst/effectv/gstvertigo.c: (gst_vertigotv_class_init):
22436         * sys/cdrom/gstcdplayer.c: (cdplayer_class_init):
22437         * sys/dxr3/dxr3spusink.c: (dxr3spusink_class_init):
22438         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_class_init):
22439         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_class_init):
22440         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init):
22441         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_class_init):
22442           fix signals to use - instead of _
22443         * ext/libcaca/gstcacasink.h:
22444         * ext/sdl/sdlvideosink.h:
22445           fix header rename
22446
22447 2004-03-04  David Schleef  <ds@schleef.org>
22448
22449         * testsuite/gst-lint:  Add a check for bad signal names.
22450
22451 2004-03-04  <kost@imn.htwk-leipzig.de>
22452
22453         reviewed by David Schleef
22454
22455         * gst/videofilter/gstgamma.c: (gst_gamma_rgb32): Fix typo that
22456         modified the alpha channel and caused a warning. (bug #136192)
22457
22458 2004-04-03  Christian Schaller <Uraeus@gnome.org>
22459
22460         * gst-plugins.spec.in:
22461         Change names of plugins to actually be correct. Try to keep things
22462         alphabetical to avoid getting beat up by Thomas
22463
22464 2004-03-03  Julien MOUTTE <julien@moutte.net>
22465
22466         * gst-libs/gst/gconf/gconf.c: (gst_gconf_get_default_video_sink):
22467         Using ximagesink as a default if no gconf key found. We should
22468         probably consider using alsasink instead of osssink for the audio
22469         part.
22470
22471 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22472
22473         * configure.ac:
22474           fix --with-plugins, don't think it ever worked before
22475         * gst-plugins.spec.in:
22476           even more updates
22477
22478 2004-03-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22479
22480         * ext/sdl/sdlvideosink.h:
22481         * sys/ximage/ximagesink.h:
22482         * sys/xvideo/xvideosink.h:
22483         * sys/xvimage/xvimagesink.h:
22484           Fix for move of gstvideosink.h -> videosink.h.
22485
22486 2004-03-02  Thomas Vander Stichele  <thomas at apestaart dot org>
22487
22488         * gst-libs/gst/xwindowlistener/Makefile.am:
22489           this is a plugin library, not a library
22490
22491 2004-03-01  David Schleef  <ds@schleef.org>
22492
22493         * AUTHORS:  Added some names.  Add yourself if you're still
22494         missing.
22495
22496 2004-03-01  David Schleef  <ds@schleef.org>
22497
22498         * MAINTAINERS: Add
22499
22500 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22501
22502         * gst-plugins.spec.in: clean up spec file
22503
22504 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22505
22506         * gst-libs/gst/video/Makefile.am:
22507         * gst-libs/gst/video/gstvideosink.c:
22508         * gst-libs/gst/video/gstvideosink.h:
22509           rename gstvideosink.h to videosink.h to match other headers
22510         * gst/mixmatrix/Makefile.am:
22511           fix plugin filename
22512         * gst/tags/Makefile.am: fix plugin filename
22513
22514 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22515
22516         * gst/tags/Makefile.am: fix plugin filename
22517
22518 2004-03-01  Thomas Vander Stichele  <thomas at apestaart dot org>
22519
22520         * examples/gstplay/player.c: (got_time_tick), (main):
22521           add error handler
22522           display time_tick more readably
22523         * gst/mixmatrix/Makefile.am:
22524           fix plugin file name
22525
22526 2004-02-29  Christophe Fergeau  <teuf@gnome.org>
22527
22528         * sys/oss/gstosselement.c: (gst_osselement_probe),
22529         (device_combination_append), (gst_osselement_class_probe_devices):
22530         * sys/oss/gstosselement.h:
22531           Reworked enumeration of oss dsps and mixers so that gst-mixer works
22532           on my system using alsa oss emulation, fixes bug #135597
22533
22534 2004-02-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
22535
22536         * gst/videodrop/gstvideodrop.c: (gst_videodrop_init),
22537         (gst_videodrop_chain), (gst_videodrop_change_state):
22538         * gst/videodrop/gstvideodrop.h:
22539           Work based on timestamp of input data, not based on the expected
22540           framerate from the input. The consequence is that this element now
22541           not only scales framerates, but also functions as a framerate
22542           corrector or framerate stabilizer/constantizer.
22543
22544 2004-02-27  David Schleef  <ds@schleef.org>
22545
22546         patches from jmmv@menta.net (Julio M. Merino Vidal)
22547
22548         * gst/interleave/deinterleave.c: (deinterleave_chain): Fix
22549         GST_ELEMENT_ERROR call (bug #135634)
22550         * gst/interleave/interleave.c: (interleave_buffered_loop),
22551         (interleave_bytestream_loop): Don't use alloca() (bug #135640)
22552         * sys/cdrom/gstcdplayer_ioctl_bsd.h: Fix ioctls on NetBSD (bug #135645)
22553         * sys/oss/gstosssink.c: (gst_osssink_get_delay),
22554         (gst_osssink_chain): Fix ioctls on NetBSD. (bug #135644)
22555         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_sync_next_frame),
22556         (gst_v4lmjpegsrc_set_capture), (gst_v4lmjpegsrc_set_capture_m),
22557         (gst_v4lmjpegsrc_capture_init), (gst_v4lmjpegsrc_requeue_frame):
22558         Fix GST_ELEMENT_ERROR call.
22559         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_try_palette): Fix
22560         GST_ELEMENT_ERROR call.
22561
22562 2004-02-27  Benjamin Otte  <otte@gnome.org>
22563
22564         * gst-libs/gst/audio/audio.h:
22565           add macro to make sure header isn't included twice
22566         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
22567           don't use gst_buffer_free
22568         * gst/playondemand/filter.func:
22569           don't use gst_data_free. Free data only once.
22570
22571 2004-02-26  David Schleef  <ds@schleef.org>
22572
22573         * gst-libs/gst/colorbalance/Makefile.am:
22574         * gst-libs/gst/mixer/Makefile.am:
22575         * gst-libs/gst/tuner/Makefile.am:
22576         * gst/level/Makefile.am: -marshal.[ch] and -enum.[ch] files
22577         should not be disted, -marshal.h files should not be installed,
22578         and -enum.h files _should_ be installed.  Fix to make this the
22579         case.
22580
22581 === release 0.7.5 ===
22582
22583 2004-02-26  Thomas Vander Stichele  <thomas at apestaart dot org>
22584
22585         * configure.ac: release 0.7.5, "Under The Sea"
22586
22587 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22588
22589         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link),
22590         (gst_audio_convert_change_state), (gst_audio_convert_get_buffer):
22591         * gst/videoscale/gstvideoscale.c:
22592         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
22593           assorted debug/warning fixes
22594
22595 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22596
22597         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
22598         (gst_videoscale_init), (gst_videoscale_chain),
22599         (gst_videoscale_set_property), (plugin_init):
22600         * gst/videoscale/gstvideoscale.h:
22601         * gst/videoscale/videoscale.c: (gst_videoscale_setup),
22602         (gst_videoscale_scale_rgb), (gst_videoscale_planar411),
22603         (gst_videoscale_planar400), (gst_videoscale_packed422),
22604         (gst_videoscale_packed422rev), (gst_videoscale_32bit),
22605         (gst_videoscale_24bit), (gst_videoscale_16bit),
22606         (gst_videoscale_bilinear), (gst_videoscale_bicubic),
22607         (gst_videoscale_scale_plane_slow),
22608         (gst_videoscale_scale_point_sample),
22609         (gst_videoscale_scale_nearest),
22610         (gst_videoscale_scale_nearest_str2),
22611         (gst_videoscale_scale_nearest_str4),
22612         (gst_videoscale_scale_nearest_32bit),
22613         (gst_videoscale_scale_nearest_24bit),
22614         (gst_videoscale_scale_nearest_16bit):
22615         add debugging category and use it properly
22616         fix use of GST_PTR_FORMAT
22617
22618 2004-02-25  Andy Wingo  <wingo@pobox.com>
22619
22620         * gst/interleave/interleave.c (interleave_buffered_loop): Always
22621         push only when channel->buffer is NULL. Prevents segfaults doing
22622         the state change after a nonlocal exit, like a scheme exception.
22623
22624         * gst/audioconvert/gstaudioconvert.c (gst_audio_convert_getcaps):
22625         Handle the case where the intersected caps is empty.
22626
22627 2004-02-25  Thomas Vander Stichele  <thomas at apestaart dot org>
22628
22629         * gst/law/mulaw-decode.c: (mulawdec_link):
22630         * gst/law/mulaw.c: (plugin_init):
22631           fix mulawdec so it actually works again
22632
22633 2004-02-24  Arwed v. Merkatz  <v.merkatz@gmx.net>
22634
22635         reviewed by: David Schleef  <ds@schleef.org>
22636
22637         * gst/videofilter/gstgamma.c: (gst_gamma_class_init),
22638         (gst_gamma_init), (gst_gamma_set_property),
22639         (gst_gamma_get_property), (gst_gamma_calculate_tables),
22640         (gst_gamma_rgb24), (gst_gamma_rgb32):  Adds gamma correction
22641         for RGB, with separate r g and b correction factors. (#131167)
22642
22643 2004-02-24  Thomas Vander Stichele  <thomas at apestaart dot org>
22644
22645         * ext/vorbis/vorbisdec.c: (vorbis_dec_chain):
22646           only signal tags for bitrate if they're > 0 (#134894)
22647
22648 2004-02-24  David Schleef  <ds@schleef.org>
22649
22650         * gst/qtdemux/qtdemux.c: (plugin_init), (gst_qtdemux_loop_header),
22651         (qtdemux_parse_moov), (qtdemux_parse), (qtdemux_node_dump_foreach),
22652         (qtdemux_dump_mvhd), (qtdemux_dump_tkhd), (qtdemux_dump_elst),
22653         (qtdemux_dump_mdhd), (qtdemux_dump_hdlr), (qtdemux_dump_vmhd),
22654         (qtdemux_dump_dref), (qtdemux_dump_stsd), (qtdemux_dump_stts),
22655         (qtdemux_dump_stss), (qtdemux_dump_stsc), (qtdemux_dump_stsz),
22656         (qtdemux_dump_stco), (qtdemux_dump_co64), (qtdemux_dump_dcom),
22657         (qtdemux_dump_cmvd), (qtdemux_parse_tree), (qtdemux_parse_trak):
22658         Cleanups.  Convert g_prints to GST_LOGs.  Add qtdemux debug
22659         category.  Attempt to fix timestamp calculation.
22660
22661 2004-02-24  Johan Dahlin  <johan@gnome.org>
22662
22663         * gst-libs/gst/gconf/gconf.c: Add \n to g_print error messages
22664
22665 2004-02-23  Thomas Vander Stichele  <thomas at apestaart dot org>
22666
22667         * configure.ac:
22668         * gconf/Makefile.am:
22669         * gconf/gstreamer.schemas:
22670         * gst-libs/gst/gconf/Makefile.am:
22671         * gst-libs/gst/gconf/gconf.c:
22672           version gconf schemas and install locations
22673
22674 2004-02-23  Benjamin Otte  <otte@gnome.org>
22675
22676         * ext/xine/xineinput.c: (gst_xine_input_dispose):
22677         (gst_xine_input_subclass_init):
22678           call parent dispose.
22679           change pad template for CD reader correctly
22680         * ext/xine/Makefile.am:
22681         * ext/xine/gstxine.h:
22682         * ext/xine/xine.c: (plugin_init):
22683         * ext/xine/xineaudiosink.c:
22684           wrap audio sinks, too
22685         * gst-libs/gst/resample/private.h:
22686         * gst-libs/gst/resample/resample.c: (gst_resample_init),
22687         (gst_resample_reinit), (gst_resample_scale),
22688         (gst_resample_nearest_s16), (gst_resample_bilinear_s16),
22689         (gst_resample_sinc_slow_s16), (gst_resample_sinc_s16),
22690         (gst_resample_sinc_ft_s16), (gst_resample_nearest_float),
22691         (gst_resample_bilinear_float), (gst_resample_sinc_slow_float),
22692         (gst_resample_sinc_float), (gst_resample_sinc_ft_float):
22693         * gst-libs/gst/resample/resample.h:
22694         * gst/audioscale/gstaudioscale.c: (gst_audioscale_method_get_type),
22695         (gst_audioscale_class_init), (gst_audioscale_link),
22696         (gst_audioscale_get_buffer), (gst_audioscale_init),
22697         (gst_audioscale_chain), (gst_audioscale_set_property),
22698         (gst_audioscale_get_property):
22699         * gst/audioscale/gstaudioscale.h:
22700           s/resample_*/gst_resample_*/i to not clobber namespaces
22701
22702 2004-02-23  Julien MOUTTE  <julien@moutte.net>
22703
22704         * gst-libs/gst/riff/riff-media.c: (gst_riff_create_video_caps),
22705         (gst_riff_create_audio_caps), (gst_riff_create_iavs_caps),
22706         (gst_riff_create_video_template_caps),
22707         (gst_riff_create_audio_template_caps),
22708         (gst_riff_create_iavs_template_caps):
22709         * gst-libs/gst/riff/riff-media.h:
22710         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
22711         (gst_asf_demux_audio_caps), (gst_asf_demux_add_audio_stream),
22712         (gst_asf_demux_video_caps), (gst_asf_demux_add_video_stream):
22713         * gst/avi/gstavidemux.c: (gst_avi_demux_add_stream):
22714         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream),
22715         (gst_matroska_demux_video_caps), (gst_matroska_demux_audio_caps),
22716         (gst_matroska_demux_plugin_init): First batch implementing audio and
22717         video codec tags in demuxers.
22718
22719 2004-02-22  Benjamin Otte  <otte@gnome.org>
22720
22721         * ext/xine/Makefile.am:
22722         * ext/xine/gstxine.h:
22723         * ext/xine/xine.c: (plugin_init):
22724         * ext/xine/xineinput.c:
22725           add input plugin wrapper. Playback from files, http, mms and cdda
22726           works.
22727         * ext/xine/xineaudiodec.c: (gst_xine_audio_dec_chain):
22728           remove leftover G_GNUC_UNUSED
22729         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream),
22730         (gst_asf_demux_identify_guid):
22731           improve debugging output
22732
22733 2004-02-22  Benjamin Otte  <otte@gnome.org>
22734
22735         reported by: Padraig O'Briain <padraig.obriain@sun.com>
22736
22737         * autogen.sh:
22738           replace test -e with test -x for mkinstalldirs to be more portable.
22739           (fixes #134816)
22740
22741 2004-02-22  Benjamin Otte  <otte@gnome.org>
22742
22743         reported by: Stefan Kost <kost@imn.htwk-leipzig.de>
22744
22745         * gst/audioconvert/gstaudioconvert.c: (plugin_init):
22746           set rank to PRIMARY
22747         * gst/volume/gstvolume.c: (plugin_init):
22748           set rank to NONE
22749         fixes #134960
22750
22751 2004-02-22   Julio M. Merino Vidal <jmmv@menta.net>
22752
22753         reviewed by Benjamin Otte  <otte@gnome.org>
22754
22755         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
22756           escape NULL strings in GST_ELEMENT_ERROR properly (fixes #135116)
22757
22758 2004-02-22  Benjamin Otte  <otte@gnome.org>
22759
22760         * configure.ac:
22761           export [_]*{gst,Gst,GST}.* symbols from plugins
22762
22763 2004-02-22  Christophe Fergeau <teuf@gnome.org>
22764
22765         reviewed by: Benjamin Otte  <otte@gnome.org>
22766
22767         * ext/lame/gstlame.c: (add_one_tag):
22768         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
22769         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_get_tag_value),
22770         (gst_vorbisenc_metadata_set1):
22771         * gst/tags/gstid3tag.c:
22772         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add):
22773           apply fixes from bugs #135042 (lame can't write tags) and #133817
22774           (add GST_ALBUM_VOLUME_{COUNT,NUMBER} tags)
22775
22776 2004-02-22 Ramon Garcia <ramon_garcia_f@yahoo.com>
22777
22778         * configure.ac: Export only gst_plugin_desc from plugins.
22779          Note that this change only makes any effect with Linux using libtool
22780          1.5.2 or higher. Otherwise it is silently ignored, but it would build
22781          fine. And don't try to have several versions of libtool in different
22782          directories.
22783
22784 2004-02-20  Andy Wingo  <wingo@pobox.com>
22785
22786         * gst/intfloat/, gst/oneton: Removed, replaced by audioconvert and
22787         interleave respectively.
22788
22789         * gst/interleave/deinterleave.c: New plugin: deinterleave
22790         (replaces on oneton).
22791         * gst/interleave/interleave.c: New plugin: interleave.
22792         * gst/interleave/plugin.h: Support file.
22793         * gst/interleave/plugin.c: Support file.
22794
22795         * configure.ac: Remove intfloat and oneton, add interleave.
22796
22797         * ext/sndfile/gstsf.c: Handle events better.
22798
22799         * gst/audioconvert/gstaudioconvert.c: Change to support int2float
22800         and float2int operation. int2float has scheduling problems as
22801         noted in in2float_chain.
22802
22803 2004-02-20  Benjamin Otte  <otte@gnome.org>
22804
22805         * ext/xine/Makefile.am:
22806         * ext/xine/gstxine.h:
22807         * ext/xine/xine.c:
22808         * ext/xine/xineaudiodec.c:
22809         * ext/xine/xinecaps.c:
22810           add first version of xine plugin wrapper. Currently only wraps the
22811           QDM2 win32 DLL, and even that only in proof-of-concept quality.
22812         * configure.ac:
22813         * ext/Makefile.am:
22814           add xine plugin wrapper, disabled by default. Use --enable-xine to
22815           build. Note that it'll segfault on gst-register if you don't remove
22816           the goom and tvtime post plugins from xine.
22817         * gst/qtdemux/qtdemux.c: (gst_qtdemux_handle_sink_event),
22818         (qtdemux_parse), (qtdemux_parse_trak), (qtdemux_audio_caps):
22819           add extradata parsing for QDM2.
22820           change around debugging prints.
22821
22822 2004-02-19  Benjamin Otte  <otte@gnome.org>
22823
22824         * ext/lame/gstlame.c: (gst_lame_chain):
22825         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
22826           use gst_tag_list_insert when you want to insert tags
22827
22828 2004-02-18  David Schleef  <ds@schleef.org>
22829
22830         * configure.ac:  Move massink to gst-rotten
22831         * ext/Makefile.am:
22832         * ext/mas/Makefile.am:
22833         * ext/mas/massink.c:
22834         * ext/mas/massink.h:
22835
22836 2004-02-18  David Schleef  <ds@schleef.org>
22837
22838         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init): Disable gdk_pixbuf
22839         typefinding, since it seems to be worse than nothing.
22840         * gst/typefind/gsttypefindfunctions.c: (qt_type_find):  Add ftyp
22841         atom to recognize .mp4 and .m4a files as video/quicktime.
22842
22843 2004-02-18  David Schleef  <ds@schleef.org>
22844
22845         * gst/sine/demo-dparams.c: (quit_live),
22846         (dynparm_log_value_changed), (dynparm_value_changed), (main):
22847         Use double dparams, not float.
22848         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
22849         (gst_sinesrc_init): Change sync default to FALSE, since multiple
22850         sync'd elements don't really work correctly.
22851         * gst/volume/gstvolume.c: (volume_class_init), (volume_init),
22852         (volume_update_volume), (volume_get_property):  Change dparam
22853         to double.
22854
22855 2004-02-18  Julien MOUTTE  <julien@moutte.net>
22856
22857         * sys/ximage/ximagesink.c:
22858         (gst_ximagesink_xwindow_update_geometry),
22859         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
22860         (gst_ximagesink_change_state), (gst_ximagesink_expose),
22861         (gst_ximagesink_init): Rework the way software video scaling works. So
22862         now we check on each chain call if the video frames are feeling the
22863         window. If not we try to renegotiate caps. On failure we memorize that
22864         and we won't try again for that PLAYING sessions.
22865         * sys/ximage/ximagesink.h: Adding a boolean to store the caps renego
22866         failure.
22867         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_init): initialize the
22868         synchronous flag.
22869
22870 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
22871
22872         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup):
22873           break up _link so we can give a better debug message for errors
22874
22875 2004-02-18  Thomas Vander Stichele  <thomas at apestaart dot org>
22876
22877         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
22878           set up debug category
22879
22880 2004-02-18  Julien MOUTTE <julien@moutte.net>
22881
22882         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22883         (gst_ximagesink_handle_xevents), (gst_ximagesink_expose): Reorganizing
22884         the way renegotiation work. The event handling function is not taking
22885         care of external windows and renegotiate method check for pad flags
22886         NEGOTIATING. Should fix : #133209
22887
22888 2004-02-17  Julien MOUTTE  <julien@moutte.net>
22889
22890         * sys/ximage/ximagesink.c: (gst_ximagesink_expose): Checking if the
22891         pad is negotiating before trying renegotiation.
22892
22893 2004-02-17  Thomas Vander Stichele  <thomas at apestaart dot org>
22894
22895         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
22896           pass on all possible mime types as typefind hints
22897
22898 2004-02-17  Julien MOUTTE <julien@moutte.net>
22899
22900         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new):
22901         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new): Fix a
22902         possible SHM leak if we crash. All other apps using XShm are doing
22903         that.
22904
22905 2004-02-17  Julien MOUTTE  <julien@moutte.net>
22906
22907         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
22908         (gst_ximagesink_expose): Renegotiate size on expose.
22909         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_expose): Update window
22910         size on expose.
22911
22912 2004-02-16  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22913
22914         * testsuite/alsa/sinesrc.c:
22915           cosmetic fix to fix compile issue with gcc 2.95.4
22916
22917 2004-02-16  Julien MOUTTE <julien@moutte.net>
22918
22919         * ext/alsa/gstalsa.c: (gst_alsa_open_audio),
22920         (gst_alsa_timestamp_to_bytes): Alsa should trigger an error if it
22921         failed opening the audio device.
22922         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
22923         (gst_ximagesink_ximage_destroy), (gst_ximagesink_ximage_put),
22924         (gst_ximagesink_xwindow_new), (gst_ximagesink_xwindow_destroy),
22925         (gst_ximagesink_xwindow_resize), (gst_ximagesink_xwindow_clear),
22926         (gst_ximagesink_renegotiate_size), (gst_ximagesink_handle_xevents),
22927         (gst_ximagesink_xcontext_get), (gst_ximagesink_xcontext_clear),
22928         (gst_ximagesink_change_state), (gst_ximagesink_chain),
22929         (gst_ximagesink_set_xwindow_id): Clearing window in READY TO PAUSED.
22930         Removing some useless g_return_if_fail like wingo suggested.
22931         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
22932         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xvimage_put),
22933         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
22934         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_xwindow_clear),
22935         (gst_xvimagesink_update_colorbalance),
22936         (gst_xvimagesink_handle_xevents), (gst_xvimagesink_xcontext_get),
22937         (gst_xvimagesink_xcontext_clear),
22938         (gst_xvimagesink_get_fourcc_from_caps),
22939         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
22940         (gst_xvimagesink_set_xwindow_id),
22941         (gst_xvimagesink_colorbalance_list_channels),
22942         (gst_xvimagesink_colorbalance_set_value),
22943         (gst_xvimagesink_colorbalance_get_value): Clearing window in READY TO
22944         PAUSED. Removing some useless g_return_if_fail like wingo suggested.
22945
22946 2004-02-16  Thomas Vander Stichele  <thomas at apestaart dot org>
22947
22948         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain):
22949           throw error when not negotiated instead of asserting
22950
22951 2004-02-15  Julien MOUTTE  <julien@moutte.net>
22952
22953         * gst/switch/gstswitch.c: (gst_switch_loop): More fixes for
22954         correct data refcounting.
22955
22956 2004-02-15  Julien MOUTTE  <julien@moutte.net>
22957
22958         * gst/switch/gstswitch.c: (gst_switch_change_state),
22959         (gst_switch_class_init): Cleaning the sinkpads correctly on state
22960         change, mostly the EOS flag.
22961
22962 2004-02-15  Julien MOUTTE  <julien@moutte.net>
22963
22964         * examples/gstplay/player.c: (got_eos), (main): Adding some
22965         output for debugging.
22966         * gst-libs/gst/play/play.c: (gst_play_state_change): Stop our
22967         timeouts if we go to any state different from PLAYING.
22968         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_seek): Fix some
22969         more EOS bugs in riff lib.
22970
22971 2004-02-14  Julien MOUTTE  <julien@moutte.net>
22972
22973         * gst-libs/gst/play/play.c: (gst_play_connect_visualization): Disable
22974         visualization until i find a way to fix switch correctly.
22975         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head): Fix a bug when
22976         EOS arrives.
22977         * gst/switch/gstswitch.c: (gst_switch_release_pad),
22978         (gst_switch_request_new_pad), (gst_switch_poll_sinkpads),
22979         (gst_switch_loop), (gst_switch_dispose), (gst_switch_class_init):
22980         Reworked switch to get a more correct behaviour with events and refing
22981         of data stored in sinkpads.
22982         * gst/switch/gstswitch.h: Adding an eos flag for every sinkpad so that
22983         we don't pull from a pad in EOS.
22984
22985 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22986
22987         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
22988           remove v1 tag even if we can't read it (makes sure we don't detect
22989           it again)
22990
22991 2004-02-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
22992
22993         * ext/alsa/gstalsa.c: (gst_alsa_pcm_wait),
22994         (gst_alsa_xrun_recovery):
22995         * ext/alsa/gstalsa.h:
22996           try xrun recovery when wait failed. Make xrun recovery function
22997           return TRUE/FALSE to indicate success. (might fix #134354)
22998
22999 2004-02-13  David Schleef  <ds@schleef.org>
23000
23001         * gst/sine/demo-dparams.c: (dynparm_log_value_changed),
23002         (dynparm_value_changed), (main): Convert from float to double.
23003         * gst/sine/gstsinesrc.c: (gst_sinesrc_init): same.
23004
23005 2004-02-13  David Schleef  <ds@schleef.org>
23006
23007         * gst/silence/gstsilence.c: (gst_silence_class_init),
23008         (gst_silence_set_clock), (gst_silence_get),
23009         (gst_silence_set_property), (gst_silence_get_property):
23010         * gst/silence/gstsilence.h: Add sync property.
23011         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23012         (gst_sinesrc_init), (gst_sinesrc_set_clock), (gst_sinesrc_get),
23013         (gst_sinesrc_set_property), (gst_sinesrc_get_property):
23014         * gst/sine/gstsinesrc.h: Add sync property.
23015
23016 2004-02-13  David Schleef  <ds@schleef.org>
23017
23018         * gst/intfloat/gstint2float.c: (conv_f32_s16),
23019         (gst_int2float_chain_gint16):  Change stdint usage to glib types.
23020
23021 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23022
23023         * configure.ac:
23024         * ext/Makefile.am:
23025         * gst-libs/ext/Makefile.am:
23026           move ffmpeg plugin to gst-ffmpeg module
23027
23028 2004-02-13  Thomas Vander Stichele  <thomas at apestaart dot org>
23029
23030         * configure.ac: use GST_ARCH to detect architecture
23031
23032 2004-02-12  Julien MOUTTE  <julien@moutte.net>
23033
23034         * gst/vbidec/vbiscreen.c: Fixing thomasvs fixes. Missing header.
23035
23036 2004-02-12  Thomas Vander Stichele  <thomas at apestaart dot org>
23037
23038         * ext/ladspa/gstladspa.c: (gst_ladspa_base_init):
23039           classify LADSPA plugins based on number of src/sink pads
23040           (#133663, Stefan Kost)
23041         * gst/sine/gstsinesrc.c: (gst_sinesrc_init):
23042           fix dparams registration
23043           (#133528, Stefan Kost)
23044         * gst/vbidec/vbiscreen.c: (vbiscreen_set_current_cell):
23045           fix use of isprint and use g_ascii_isprint instead
23046           (#133316, Stefan Kost)
23047
23048 2004-02-11  David Schleef  <ds@schleef.org>
23049
23050         Convert a few inner loops to use liboil.  This is currently
23051         optional, and is only enabled if liboil is present (duh!).
23052         * configure.ac: Check for liboil-0.1
23053         * gst/intfloat/Makefile.am:
23054         * gst/intfloat/gstint2float.c: (conv_f32_s16), (scalarmult_f32),
23055         (gst_int2float_chain_gint16):
23056         * gst/videofilter/Makefile.am:
23057         * gst/videofilter/gstvideobalance.c: (gst_videobalance_class_init),
23058         (tablelookup_u8), (gst_videobalance_planar411):
23059         * gst/videotestsrc/Makefile.am:
23060         * gst/videotestsrc/gstvideotestsrc.c: (plugin_init):
23061         * gst/videotestsrc/videotestsrc.c: (splat_u8), (paint_hline_YUY2),
23062         (paint_hline_IYU2), (paint_hline_str4), (paint_hline_str3),
23063         (paint_hline_RGB565), (paint_hline_xRGB1555):
23064
23065 2004-02-11  David Schleef  <ds@schleef.org>
23066
23067         * ext/lcs/gstcolorspace.c: (colorspace_find_lcs_format),
23068         (gst_colorspace_caps_get_fourcc), (colorspace_setup_converter),
23069         (gst_colorspace_getcaps), (gst_colorspace_link),
23070         (gst_colorspace_base_init), (gst_colorspace_init),
23071         (gst_colorspace_chain), (gst_colorspace_change_state),
23072         (plugin_init): Merge Ronald's patch (bug #117897) and update
23073         for new caps and negotiation.  Seems to work, although it
23074         shows off bugs in lcs.
23075
23076 2004-02-11  David Schleef  <ds@schleef.org>
23077
23078         * ext/alsa/Makefile.am: Fix linking against libgstinterfaces.
23079         (bug #133886)  Noticed by bugs@leroutier.net (Stephane LOEUILLET)
23080
23081 2004-02-11  David Schleef  <ds@schleef.org>
23082
23083         * ext/librfb/gstrfbsrc.c: (gst_rfbsrc_class_init),
23084         (gst_rfbsrc_change_state), (gst_rfbsrc_init),
23085         (gst_rfbsrc_set_property), (gst_rfbsrc_get_property):
23086         Add server and port properties
23087
23088 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
23089
23090         * m4/a52.m4:
23091         * m4/aalib.m4:
23092         * m4/as-ffmpeg.m4:
23093         * m4/as-liblame.m4:
23094         * m4/as-slurp-ffmpeg.m4:
23095         * m4/check-libheader.m4:
23096         * m4/esd.m4:
23097         * m4/freetype2.m4:
23098         * m4/gconf-2.m4:
23099         * m4/glib.m4:
23100         * m4/gst-alsa.m4:
23101         * m4/gst-artsc.m4:
23102         * m4/gst-ivorbis.m4:
23103         * m4/gst-matroska.m4:
23104         * m4/gst-sdl.m4:
23105         * m4/gst-shout2.m4:
23106         * m4/gst-sid.m4:
23107         * m4/gtk.m4:
23108         * m4/libdv.m4:
23109         * m4/libfame.m4:
23110         * m4/libmikmod.m4:
23111         * m4/ogg.m4:
23112         * m4/vorbis.m4:
23113           fix underquotedness of macros (#133800)
23114         * m4/as-avifile.m4:
23115         * m4/xmms.m4:
23116           removed because no longer used
23117
23118 2004-02-11  Thomas Vander Stichele  <thomas at apestaart dot org>
23119
23120         * configure.ac:
23121           require gettext 0.11.5 so ulonglong.m4 gets checked out and copied
23122           by autopoint (fixes #132996)
23123
23124 2004-02-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23125
23126         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_base_init):
23127         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_base_init):
23128         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_base_init):
23129         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_base_init):
23130           fix memleaks
23131
23132 2004-02-11  David Schleef  <ds@schleef.org>
23133
23134         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
23135         (gst_gdk_pixbuf_chain): Fix logic bug causing spurious errors.
23136         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_base_init),
23137         (gst_jpegdec_init), (gst_jpegdec_chain): Fix negotiation.
23138         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_base_init),
23139         (gst_jpegenc_class_init), (gst_jpegenc_init),
23140         (gst_jpegenc_getcaps), (gst_jpegenc_link), (gst_jpegenc_resync),
23141         (gst_jpegenc_chain), (gst_jpegenc_set_property),
23142         (gst_jpegenc_get_property):  Fix negotiation.  Add some properties.
23143         * ext/jpeg/gstjpegenc.h: Fix negotiation.
23144
23145 2004-02-10  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23146
23147         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
23148         (gst_mikmod_srcfixate), (gst_mikmod_srclink), (gst_mikmod_loop):
23149         * ext/mikmod/gstmikmod.h:
23150           fix caps negotiation in mikmod
23151         * ext/ogg/gstoggdemux.c: (gst_ogg_print):
23152           output debug information
23153
23154 2004-02-08  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23155
23156         * gst-libs/gst/colorbalance/Makefile.am:
23157         * gst-libs/gst/navigation/Makefile.am:
23158         * gst-libs/gst/xoverlay/Makefile.am:
23159           remove unused GST_OPT_CFLAGS from Makefiles
23160           include X_CFLAGS and X_LIBS in xoverlay. (#131948)
23161
23162 2004-02-07  David Schleef  <ds@schleef.org>
23163
23164         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_handle_event): Don't
23165         push events to pads that haven't been created (#133508)
23166
23167 2004-02-07  Jan Schmidt  <thaytan@mad.scientist.com>
23168
23169         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_src_convert),
23170         (gst_dvdec_sink_convert), (gst_dvdec_handle_sink_event),
23171         (gst_dvdec_video_getcaps), (gst_dvdec_video_link),
23172         (gst_dvdec_loop), (gst_dvdec_change_state):
23173         Second attempt at committing a working dvdec element.
23174
23175 2004-02-06  David Schleef  <ds@schleef.org>
23176
23177         Build fixes for OS X: (see #129600)
23178         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_strh),
23179         (gst_riff_read_strf_vids), (gst_riff_read_strf_auds),
23180         (gst_riff_read_strf_iavs):
23181         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
23182         (gst_avi_demux_stream_odml):
23183         * gst/playondemand/Makefile.am:
23184         * gst/rtp/rtp-packet.c:
23185
23186 2004-02-05  David Schleef  <ds@schleef.org>
23187
23188         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_loop): Revert
23189         last change, because it Just Doesn't Compile.
23190
23191 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23192
23193         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
23194           skip undecodable id3v2 tag instead of keeping it
23195
23196 2004-02-05  David Schleef  <ds@schleef.org>
23197
23198         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
23199         Unref leaked buffer.  (Noticed by Ronald)
23200
23201 2004-02-05  David I. Lehn  <dlehn@users.sourceforge.net>
23202
23203         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
23204         Sync requires with other checks.  >= vs =.
23205
23206 2004-02-06  Jan Schmidt  <thaytan@mad.scientist.com>
23207
23208         * ext/dv/gstdvdec.c: (gst_dvdec_init), (gst_dvdec_video_getcaps),
23209         (gst_dvdec_video_link), (gst_dvdec_loop):
23210         * ext/dv/gstdvdec.h:
23211           rework the caps negotiation so that dvdec works again instead
23212           of just segfaulting.
23213
23214 === release 0.7.4 ===
23215
23216 2004-02-06  Thomas Vander Stichele  <thomas at apestaart dot org>
23217
23218         * NEWS: GStreamer Plugins 0.7.4 "For Great Justice" released
23219         * configure.ac: changed for release
23220
23221 2004-02-05  Thomas Vander Stichele  <thomas at apestaart dot org>
23222
23223         * gst-libs/gst/gconf/gstreamer-gconf-uninstalled.pc.in:
23224         * pkgconfig/gstreamer-interfaces-uninstalled.pc.in:
23225         * pkgconfig/gstreamer-libs-uninstalled.pc.in:
23226         * pkgconfig/gstreamer-play-uninstalled.pc.in:
23227           reworked patch by David Lehn to fix libdir and includedir for
23228           uninstalled libraries
23229           removed play and gconf from gstreamer-libs since they have their
23230           own pkgconfig files
23231
23232 2004-02-04  David Schleef  <ds@schleef.org>
23233
23234         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt): Fix a caps
23235         memleak.
23236
23237 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23238
23239         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
23240           use correct GST_TAG_ENCODER tag
23241
23242 2004-02-05  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23243
23244         * ext/alsa/gstalsa.c: (gst_alsa_change_state):
23245           be sure to stop the clock when going to paused
23246         * sys/oss/gstosssink.c: (gst_osssink_change_state):
23247           reset number of transmitted when going to ready.
23248         fixes #132935
23249
23250 2004-02-05  Charles Schmidt <cschmidt2@emich.edu>
23251
23252         reviewed by Benjamin Otte
23253
23254         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
23255           extract track count (fixes #133410)
23256
23257 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23258
23259         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
23260           that should be !=, not == (fixes #132519)
23261
23262 2004-02-04  David Schleef  <ds@schleef.org>
23263
23264         Make sure set_explicit_caps() is called before adding pad.
23265         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
23266         * gst/id3/gstid3types.c: (gst_id3types_loop):
23267         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
23268         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
23269
23270 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
23271
23272         * configure.ac:
23273           bump nano to 2, first prerelease
23274           put back AM_PROG_LIBTOOL
23275
23276 2004-02-04  Thomas Vander Stichele  <thomas at apestaart dot org>
23277
23278         * testsuite/alsa/Makefile.am:
23279           these are user test apps, not automatic testsuite tests
23280
23281 2004-02-04  David Schleef  <ds@schleef.org>
23282
23283         Convert GST_DEBUG_CAPS() to GST_DEBUG():
23284         * gst/mpeg1videoparse/gstmp1videoparse.c:
23285         (mp1videoparse_parse_seq):
23286         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
23287         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
23288         * sys/xvideo/gstxwindow.c: (_gst_xwindow_new):
23289         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
23290         (gst_xvideosink_getcaps):
23291         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
23292         * testsuite/gst-lint: more tests
23293
23294 2004-02-04  David Schleef  <ds@schleef.org>
23295
23296         Replace use of GST_PAD_FORMATS_FUNCTION() and similar macros
23297         with the code that they would expand to.
23298         * ext/flac/gstflacdec.c: (gst_flacdec_get_src_formats),
23299         (gst_flacdec_get_src_query_types),
23300         (gst_flacdec_get_src_event_masks):
23301         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get_formats),
23302         (gst_gnomevfssrc_get_query_types),
23303         (gst_gnomevfssrc_get_event_mask):
23304
23305 2004-02-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23306
23307         * gst/sine/gstsinesrc.c: (gst_sinesrc_class_init),
23308         (gst_sinesrc_dispose):
23309           fix memleak by properly disposing sinesrc
23310
23311 2004-02-04  Julien MOUTTE  <julien@moutte.net>
23312
23313         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_expose):
23314         * gst-libs/gst/xoverlay/xoverlay.h: Adding the _expose method to tell
23315         an overlay to redraw the image because it has been exposed.
23316         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_destroy),
23317         (gst_ximagesink_ximage_put), (gst_ximagesink_expose),
23318         (gst_ximagesink_xoverlay_init), (gst_ximagesink_init):
23319         * sys/ximage/ximagesink.h: Implement expose method from XOverlay
23320         interface
23321         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_destroy),
23322         (gst_xvimagesink_xvimage_put), (gst_xvimagesink_expose),
23323         (gst_xvimagesink_xoverlay_init), (gst_xvimagesink_init):
23324         * sys/xvimage/xvimagesink.h: Implement expose method from XOverlay
23325         interface
23326
23327 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23328
23329         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_type_find):
23330           more memleak fixage
23331
23332 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23333
23334         * ext/gdk_pixbuf/gstgdkpixbuf.c: (plugin_init):
23335         * gst/typefind/gsttypefindfunctions.c:
23336           fix memleaks shown by gst-typefind
23337
23338 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
23339
23340         * common/glib-gen.mak:
23341           add hack rule to touch .Plo files
23342         * gst-libs/gst/colorbalance/Makefile.am:
23343         * gst-libs/gst/mixer/Makefile.am:
23344         * gst-libs/gst/play/Makefile.am:
23345         * gst-libs/gst/tuner/Makefile.am:
23346           remove glib_root variable
23347
23348 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23349
23350         * gst/qtdemux/qtdemux.c: (gst_qtdemux_add_stream):
23351           set explicit caps before adding the element, so the autopluggers can
23352           plug correctly.
23353         * gst/typefind/gsttypefindfunctions.c: (mp3_type_find),
23354         (mpeg2_sys_type_find), (mpeg1_sys_type_find),
23355         (mpeg_video_type_find), (mpeg_video_stream_type_find),
23356         (dv_type_find):
23357           fix memleaks in typefind functions. gst_type_find_suggest takes a const
23358           argument.
23359
23360 2004-02-03  Thomas Vander Stichele  <thomas at apestaart dot org>
23361
23362         * gst-libs/gst/colorbalance/Makefile.am:
23363         * gst-libs/gst/colorbalance/colorbalance-marshal.list:
23364         * gst-libs/gst/colorbalance/colorbalance.c:
23365         * gst-libs/gst/colorbalance/colorbalance.h:
23366         * gst-libs/gst/colorbalance/colorbalancemarshal.list:
23367         * gst-libs/gst/mixer/Makefile.am:
23368         * gst-libs/gst/mixer/mixer-marshal.list:
23369         * gst-libs/gst/mixer/mixer.c:
23370         * gst-libs/gst/mixer/mixer.h:
23371         * gst-libs/gst/mixer/mixermarshal.list:
23372         * gst-libs/gst/play/Makefile.am:
23373         * gst-libs/gst/play/play.h:
23374         * gst-libs/gst/tuner/Makefile.am:
23375         * gst-libs/gst/tuner/tuner-marshal.list:
23376         * gst-libs/gst/tuner/tuner.c:
23377         * gst-libs/gst/tuner/tuner.h:
23378         * gst-libs/gst/tuner/tunermarshal.list:
23379           use new glib-gen.mak snippet to clean up Makefile.am
23380           fix various bugs in Makefile.am's
23381
23382 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23383
23384         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
23385           handle chain parsing correctly in the multichain case
23386         * ext/theora/theoradec.c: (gst_theora_dec_init), (_theora_ilog),
23387         (theora_dec_from_granulepos), (theora_dec_to_granulepos),
23388         (theora_dec_src_query), (theora_dec_src_event), (theora_dec_event),
23389         (theora_dec_chain):
23390           handle events and queries correctly
23391
23392 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
23393
23394         * .cvsignore:
23395         Ignore generated file _stdint.h.
23396
23397 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
23398
23399         * gst-libs/gst/colorbalance/Makefile.am:
23400         * gst-libs/gst/colorbalance/colorbalance.h:
23401         * gst-libs/gst/mixer/Makefile.am:
23402         * gst-libs/gst/mixer/mixer.h:
23403         * gst-libs/gst/play/Makefile.am:
23404         * gst-libs/gst/play/play.h:
23405         * gst-libs/gst/tuner/Makefile.am:
23406         * gst-libs/gst/tuner/tuner.h:
23407         Generate enum type code with glib-mkenums.
23408         * gst-libs/gst/colorbalance/.cvsignore:
23409         * gst-libs/gst/mixer/.cvsignore:
23410         * gst-libs/gst/play/.cvsignore:
23411         * gst-libs/gst/tuner/.cvsignore:
23412         Ignore generated files.
23413
23414 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
23415
23416         * gst-libs/gst/audio/.cvsignore:
23417         Ignore generated file.
23418         * gst-libs/gst/audio/Makefile.am:
23419         Do not install example filter.
23420
23421 2004-02-03  David I. Lehn  <dlehn@users.sourceforge.net>
23422
23423         * examples/switch/.cvsignore:
23424         Ignore generated file.
23425
23426 2004-02-03  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23427
23428         * common/m4/ax_create_stdint_h.m4:
23429         * configure.ac:
23430           add AX_CREATE_STDINT_H to get correct type definitions for a52dec in
23431           _stdint.h.
23432         * Makefile.am:
23433           remove generated _stdint.h in DISTCLEANFILES
23434         * ext/a52dec/gsta52dec.c:
23435           include _stdint.h for a52dec. (should fix #133064)
23436
23437 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
23438
23439         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_add),
23440         (gst_tag_to_vorbis_comments):
23441         Add replaygain support to vorbistag
23442
23443 2004-02-02  Jeremy Simon  <jesimon@libertysurf.fr>
23444         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
23445         (gst_ffmpeg_caps_to_extradata):
23446           Fix SVQ3 caps flag properties
23447           Use glib macro for bytes swap
23448
23449 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23450
23451         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
23452         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
23453         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
23454         * ext/sndfile/gstsf.c: (plugin_init):
23455         * gst/avi/gstavi.c: (plugin_init):
23456         * sys/dxr3/dxr3init.c: (plugin_init):
23457         * sys/oss/gstossaudio.c: (plugin_init):
23458         * sys/v4l/gstv4l.c: (plugin_init):
23459         * sys/v4l2/gstv4l2.c: (plugin_init):
23460           remove textdomain calls
23461         * po/nl.po:
23462           update Dutch translation
23463
23464 2004-02-02  Julien MOUTTE  <julien@moutte.net>
23465
23466         * gst-libs/gst/play/play.c: (gst_play_pipeline_setup),
23467         (gst_play_set_audio_sink): Moving volume in the audio thread for
23468         instantaneous volume change. Maybe i will add another volume in front
23469         of visualization later, not sure yet though.
23470
23471 2004-02-02  Julien MOUTTE  <julien@moutte.net>
23472
23473         * sys/ximage/ximagesink.c: (gst_ximagesink_renegotiate_size),
23474         (gst_ximagesink_handle_xevents): Better X events handling, only take
23475         the latest events for configure and motion.
23476         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents): same.
23477
23478 2004-02-02  Jon Trowbridge  <trow@gnu.org>
23479
23480         reviewed by: David Schleef  <ds@schleef.org>
23481
23482         Fix memory leaks:
23483         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_register):
23484         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_register):
23485
23486 2004-02-02  David Schleef  <ds@schleef.org>
23487
23488         code cleanup.  Change bzero() to memset().  Remove duplicate ; at ends
23489         of lines.
23490         * ext/cdparanoia/gstcdparanoia.c: (cdparanoia_event):
23491         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
23492         * ext/xvid/gstxviddec.c: (gst_xviddec_src_link):
23493         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
23494         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_chain):
23495         * gst/effectv/gstedge.c: (gst_edgetv_sinkconnect):
23496         * gst/effectv/gstvertigo.c: (gst_vertigotv_sinkconnect):
23497         * gst/intfloat/float22int.c: (gst_float2_2_int_getcaps),
23498         (gst_float2_2_int_link):
23499         * gst/mpeg2sub/gstmpeg2subt.c: (gst_mpeg2subt_chain_subtitle):
23500         * gst/rtjpeg/RTjpeg.c: (RTjpeg_init_mcompress):
23501         * gst/tcp/gsttcpsink.c: (gst_tcpsink_init_send):
23502         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_init_receive):
23503         * gst/udp/gstudpsink.c: (gst_udpsink_init_send):
23504         * gst/udp/gstudpsrc.c: (gst_udpsrc_init_receive):
23505         * sys/v4l/gstv4lelement.c: (gst_v4lelement_init):
23506         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_set_capture):
23507         * testsuite/gst-lint: Add tests for bzero and ;;
23508
23509 2004-02-02  David Schleef  <ds@schleef.org>
23510
23511         * gst/debug/efence.c: Add fallback if MAP_ANONYMOUS isn't defined.
23512
23513 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23514
23515         * ext/aalib/gstaasink.c: (gst_aasink_open):
23516         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
23517         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23518         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
23519         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
23520         (gst_afsink_close_file):
23521         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
23522         (gst_afsrc_close_file):
23523         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
23524         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
23525         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
23526         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
23527         * ext/esd/esdmon.c: (gst_esdmon_get):
23528         * ext/esd/esdsink.c: (gst_esdsink_chain), (gst_esdsink_open_audio):
23529         * ext/faac/gstfaac.c: (gst_faac_chain):
23530         * ext/faad/gstfaad.c: (gst_faad_chain):
23531         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
23532         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
23533         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
23534         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
23535         (gst_flacdec_loop):
23536         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
23537         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
23538         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
23539         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
23540         (gst_gnomevfssink_close_file):
23541         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
23542         (gst_gnomevfssrc_open_file):
23543         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
23544         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
23545         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
23546         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
23547         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
23548         * ext/mad/gstmad.c: (gst_mad_chain):
23549         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
23550         * ext/mpeg2dec/gstmpeg2dec.c:
23551         * ext/mpeg2enc/gstmpeg2enc.cc:
23552         * ext/mplex/gstmplex.cc:
23553         * ext/mplex/gstmplexibitstream.cc:
23554         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
23555         (gst_ogg_demux_push):
23556         * ext/raw1394/gstdv1394src.c:
23557         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
23558         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
23559         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
23560         (gst_sf_loop):
23561         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
23562         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop):
23563         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
23564         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
23565         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
23566         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
23567         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
23568         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
23569         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
23570         (gst_riff_read_element_data), (gst_riff_read_seek),
23571         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
23572         * gst/adder/gstadder.c: (gst_adder_loop):
23573         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
23574         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
23575         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
23576         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
23577         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
23578         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
23579         * gst/goom/gstgoom.c: (gst_goom_chain):
23580         * gst/id3/gstid3types.c: (gst_id3types_loop):
23581         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
23582         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
23583         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
23584         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
23585         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
23586         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
23587         (gst_ebml_read_float), (gst_ebml_read_header):
23588         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
23589         (gst_matroska_demux_parse_blockgroup):
23590         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
23591         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
23592         * gst/oneton/gstoneton.c: (gst_oneton_chain):
23593         * gst/silence/gstsilence.c: (gst_silence_get):
23594         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
23595         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
23596         * gst/speed/gstspeed.c: (speed_loop):
23597         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
23598         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
23599         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
23600         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
23601         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
23602         (gst_wavparse_loop):
23603         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
23604         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
23605         (dxr3audiosink_close):
23606         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
23607         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
23608         (dxr3videosink_close), (dxr3videosink_write_data):
23609         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
23610         * sys/oss/gstosssink.c: (gst_osssink_chain):
23611         * sys/oss/gstosssrc.c: (gst_osssrc_get):
23612         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
23613         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
23614         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
23615         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay),
23616         (gst_v4l_set_window), (gst_v4l_enable_overlay):
23617         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
23618         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
23619         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
23620         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
23621         (gst_v4l_set_audio):
23622         * sys/v4l/v4l_calls.h:
23623         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
23624         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
23625         (gst_v4lmjpegsink_playback_init),
23626         (gst_v4lmjpegsink_playback_start):
23627         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame):
23628         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
23629         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
23630         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
23631         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
23632         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
23633         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
23634         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
23635         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
23636         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
23637         (gst_v4l2_get_output), (gst_v4l2_set_output),
23638         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
23639         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
23640         (gst_v4l2_set_attribute):
23641         * sys/v4l2/v4l2_calls.h:
23642         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
23643         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
23644         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
23645         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
23646         (gst_v4l2src_capture_stop):
23647         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
23648         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
23649         (gst_ximagesink_chain):
23650         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
23651         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
23652         (gst_xvideosink_xwindow_new):
23653         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
23654         (gst_xvimagesink_chain):
23655
23656 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23657
23658         * gst/volume/gstvolume.c: (gst_volume_set_volume),
23659         (gst_volume_get_volume), (volume_class_init), (volume_init),
23660         (volume_chain_int16), (volume_update_volume):
23661         * gst/volume/gstvolume.h:
23662           make code more readable by removing magic numbers
23663           make mixer interface export 0-100 range
23664           make it internally map to 0.0-1.0 range so users don't distort
23665           output by putting the sliders at full volume
23666
23667 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23668
23669         * gst-libs/gst/play/play.c: (gst_play_tick_callback),
23670         (gst_play_state_change), (gst_play_seek_to_time):
23671         block the tick callback for 0.5 secs after doing a seek
23672
23673 2004-02-02  Thomas Vander Stichele  <thomas at apestaart dot org>
23674
23675         * gst-libs/gst/play/play.c: (gst_play_new):
23676           check for GError
23677
23678 2004-02-01  Julien MOUTTE  <julien@moutte.net>
23679
23680         * gst-libs/gst/play/play.c: (gst_play_seek_to_time),
23681         (gst_play_new): Accepting NULL GError, blocking time tick while seeking.
23682         * sys/ximage/ximagesink.c: (gst_ximagesink_sink_link),
23683         (gst_ximagesink_chain), (gst_ximagesink_init): s/sinkconnect/sink_link
23684         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sink_link),
23685         (gst_xvimagesink_chain), (gst_xvimagesink_init): s/sinkconnect/sink_link
23686
23687 2004-02-01  Thomas Vander Stichele  <thomas at apestaart dot org>
23688
23689         * configure.ac:
23690         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
23691           check for a function added in vorbis 1.1
23692
23693 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23694
23695         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start),
23696         (gst_alsa_drain_audio), (gst_alsa_stop_audio):
23697           really start/stop clock only on PLAYING <=> PAUSED
23698         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
23699           remove \n from debugging lines
23700         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain):
23701           make it work when seeking does not
23702         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
23703           reset on DISCONT
23704
23705 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23706
23707         * ext/alsa/gstalsa.c: (gst_alsa_change_state), (gst_alsa_start):
23708           start clock on PAUSED=>PLAYING, not later
23709         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
23710           extract correct time for different discont formats
23711         (gst_alsa_sink_get_time):
23712           don't segfault when no format is negotiated yet, just return 0
23713         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
23714         (gst_ogg_demux_handle_event), (gst_ogg_demux_push),
23715         (gst_ogg_pad_push):
23716           handle flush and discont events correctly
23717         * ext/vorbis/vorbisdec.c: (vorbis_dec_event), (vorbis_dec_chain):
23718           handle discont events correctly
23719
23720 2004-01-31  Thomas Vander Stichele  <thomas at apestaart dot org>
23721
23722         * gst-libs/gst/play/play.c: (gst_play_error_quark),
23723         (gst_play_error_create), (gst_play_error_plugin),
23724         (gst_play_pipeline_setup), (gst_play_init), (gst_play_new):
23725         * gst-libs/gst/play/play.h:
23726           add error handling during creation
23727         * examples/gstplay/player.c: (main):
23728           use new gst_play_new
23729
23730
23731 2004-01-31  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23732
23733         * ext/theora/theoradec.c: (theora_dec_chain):
23734           make comments work
23735         * ext/vorbis/vorbisdec.c: (vorbis_dec_src_query),
23736         (vorbis_dec_src_event), (vorbis_dec_chain):
23737           add encoder tag, fix tag reading to be more error tolerant, change
23738           BITRATE to NOMINAL_BITRATE, add debugging, don't unref events after
23739           gst_pad_event_default.
23740         * gst/tags/gstvorbistag.c:
23741         (gst_tag_list_from_vorbiscomment_buffer):
23742           undefine function specific define at end of function
23743
23744 2004-01-31  Jeremy Simon  <jesimon@libertysurf.fr>
23745
23746         * ext/flac/gstflac.c: (plugin_init):
23747         * ext/flac/gstflacdec.c: (gst_flacdec_class_init):
23748         * ext/flac/gstflacdec.h:
23749         * ext/flac/gstflacenc.h:
23750           Fix typos
23751
23752 2004-01-30  David I. Lehn  <dlehn@users.sourceforge.net>
23753
23754         * examples/gstplay/player.c: s/gstplay.h/play.h/
23755
23756 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23757
23758         * gst-libs/gst/play/Makefile.am:
23759         * gst-libs/gst/play/gstplay.c:
23760         * gst-libs/gst/play/gstplay.h:
23761         * gst-libs/gst/play/play.c:
23762           more surgery, operation complete
23763
23764 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23765
23766         * gst-libs/gst/play/play.old.c:
23767         * gst-libs/gst/play/play.old.h:
23768           after CVS surgery by moving, remove
23769         * gst-libs/gst/play/playpipelines.c:
23770           remove
23771
23772         * gst/intfloat/float22int.c: (gst_float2_2_int_chain):
23773           add negotiation error
23774
23775 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23776
23777         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_event),
23778         (gst_ogg_demux_push):
23779           add some seeking debug info
23780           send a flush when seeking
23781
23782 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23783
23784         * configure.ac:
23785           use AC_C_INLINE
23786         * configure.ac:
23787         * ext/Makefile.am:
23788         * ext/theora/Makefile.am:
23789         * ext/theora/theoradec.c:
23790           add theora video decoder. Does just do simple decoding for now and
23791           has been tested against Theora cvs only. It only works when theora
23792           is compiled with --enable-static.
23793         * ext/vorbis/vorbisdec.c: (vorbis_dec_event):
23794           always reset packetno on DISCONT
23795
23796 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23797
23798         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
23799           Fix audio.
23800
23801 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23802
23803         * gst/mpegaudioparse/gstmpegaudioparse.c:
23804         (mp3_type_frame_length_from_header):
23805           Fix header parsing - stolen from ffmpeg (thank you! :) ).
23806
23807 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23808
23809         * ext/esd/esdsink.c: (gst_esdsink_init):
23810           Since we have static pad template caps, we don't need to negotiate;
23811           either the core errors out or we know the format.
23812
23813 2004-01-30  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23814
23815         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
23816         (gst_riff_read_seek):
23817         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
23818         (gst_ebml_read_seek):
23819           Fix event handling.
23820
23821 2004-01-30  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23822
23823         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
23824           removee video/x-theora from vp3 decoder, it doesn't handle raw
23825           theora streams
23826         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_init):
23827           fix bug with finalizing element that never went to PAUSED
23828         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_src_query):
23829           length and position queries were swapped
23830         * ext/vorbis/vorbisdec.c: (gst_vorbis_dec_init),
23831         (vorbis_dec_from_granulepos), (vorbis_dec_src_query),
23832         (vorbis_dec_src_event):
23833           implement querying time and bytes
23834
23835 2004-01-30  Thomas Vander Stichele  <thomas at apestaart dot org>
23836
23837         * just about every source file:
23838           gst_element_error -> GST_ELEMENT_ERROR
23839
23840 2004-01-29  Julien MOUTTE  <julien@moutte.net>
23841
23842         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_get): Fixing seeking
23843         emiting FLUSH and even before DISCONT.
23844         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): Fix seeking to
23845         get the best instant seeking as possible yay!
23846
23847 2004-01-29  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23848
23849         * gst/mpeg1videoparse/gstmp1videoparse.c:
23850         (gst_mp1videoparse_real_chain):
23851           Committed wrong version last week... Grr... Didn't notice until now.
23852
23853 2004-01-29  Julien MOUTTE <julien@moutte.net>
23854
23855         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new):
23856         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_new): Emit the
23857         have_xwindow_id signal in xwindow_create.
23858
23859 2004-01-29  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23860
23861         * ext/ogg/gstoggdemux.c:
23862           lots of changes - mainly support for chained bitstreams, seeking,
23863           querying and bugfixes of course
23864         * ext/vorbis/Makefile.am:
23865         * ext/vorbis/vorbisdec.c:
23866         * ext/vorbis/vorbisdec.h:
23867           add vorbisdec raw vorbis decoder
23868         * ext/vorbis/vorbis.c: (plugin_init):
23869           register vorbisdec as PRIMARY, vorbisfile as SECONDARY
23870         * gst/intfloat/Makefile.am:
23871         * gst/intfloat/float22int.c:
23872         * gst/intfloat/float22int.h:
23873         * gst/intfloat/gstintfloatconvert.c: (plugin_init):
23874           add float2intnew plugin. It converts multichannel interleaved float to
23875           multichannel interleaved int. The name should probably be changed.
23876         * gst/typefind/gsttypefindfunctions.c: (theora_type_find),
23877         (plugin_init):
23878           add typefinding for raw theora video so oggdemux can detect it.
23879
23880 2004-01-28  Julien MOUTTE  <julien@moutte.net>
23881
23882         * gst-libs/gst/play/gstplay.c: (gst_play_seek_to_time): seek on video
23883         sink element first.
23884         * gst/videoscale/gstvideoscale.c:
23885         (gst_videoscale_handle_src_event): Fixing src event handler.
23886
23887 2004-01-28  Ronald Bultje  <rbultje@ronald.bitfreak.net>
23888
23889         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_class_init), (gst_v4lsrc_init),
23890         (gst_v4lsrc_open), (gst_v4lsrc_close),
23891         (gst_v4lsrc_palette_to_caps), (gst_v4lsrc_srcconnect),
23892         (gst_v4lsrc_getcaps), (gst_v4lsrc_set_clock):
23893         * sys/v4l/gstv4lsrc.h:
23894         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_capture_start),
23895         (gst_v4lsrc_grab_frame), (gst_v4lsrc_capture_stop):
23896           Implement resizing... Hack. But that's why v4l is b0rked...
23897
23898 2004-01-28  Julien MOUTTE <julien@moutte.net>
23899
23900         * sys/ximage/ximagesink.c: (gst_ximagesink_check_xshm_calls),
23901         (gst_ximagesink_ximage_new), (gst_ximagesink_ximage_destroy),
23902         (gst_ximagesink_ximage_put), (gst_ximagesink_xwindow_new),
23903         (gst_ximagesink_xwindow_destroy):
23904         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_check_xshm_calls),
23905         (gst_xvimagesink_xvimage_new), (gst_xvimagesink_xvimage_destroy),
23906         (gst_xvimagesink_xwindow_new), (gst_xvimagesink_xwindow_destroy),
23907         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_get_xv_support),
23908         (gst_xvimagesink_xcontext_get): Removing some useless debugs messages,
23909         correctly cleaning the image created to check xshm calls on succes,
23910         added a lot of XSync calls in X11 functions, and fixed a segfault when
23911         no image format was defined before negotiation happened.
23912
23913 2004-01-28  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23914
23915         * ext/alsa/gstalsa.c: (gst_alsa_query_func):
23916           use gst_element_get_time to get correct time
23917
23918 2004-01-28  Julien MOUTTE  <julien@moutte.net>
23919
23920         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xerror),
23921         (gst_ximagesink_check_xshm_calls), (gst_ximagesink_ximage_destroy),
23922         (gst_ximagesink_xcontext_get), (gst_ximagesink_class_init):
23923         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xerror),
23924         (gst_xvimagesink_check_xshm_calls),
23925         (gst_xvimagesink_xvimage_destroy), (gst_xvimagesink_xcontext_get): Our
23926         X plugins are now able to detect that XShm calls will fail even if the
23927         server claims that it has XShm support (remote displays most of the
23928         time). We then log the error as a GST_DEBUG and set use_shm to FALSE
23929         so that we use non XShm functions. This feature is almost useless for
23930         xvimagesink as Xv is not supported on remote displays anyway, but
23931         it might happen than even on the local display XShm calls fail.
23932
23933 2004-01-27  David Schleef  <ds@schleef.org>
23934
23935         * ext/esd/esdsink.c: (gst_esdsink_class_init), (gst_esdsink_init),
23936         (gst_esdsink_link), (gst_esdsink_get_time), (gst_esdsink_chain),
23937         (gst_esdsink_change_state):  Fix sync issues in esdsink.  Also
23938         changed esdsink to only use 44100,16,2, since esd sucks at rate
23939         conversion and esdsink has had difficulty negotiating.
23940
23941 2004-01-27  Julien MOUTTE <julien@moutte.net>
23942
23943         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback),
23944         (gst_play_seek_to_time): Fixing the way to get current position.
23945
23946 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23947
23948         * sys/oss/gstosssink.c: (gst_osssink_sink_query):
23949           use gst_element_get_time to get correct time
23950
23951 2004-01-27  Julien MOUTTE <julien@moutte.net>
23952
23953         * gst-libs/gst/play/gstplay.c: (gst_play_set_location): The easiest
23954         fix ever... Inverting 2 lines of code make spider autoplug correctly
23955         tagged mp3 !
23956
23957 2004-01-27  David Schleef  <ds@schleef.org>
23958
23959         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
23960         Use gst_pad_try_set_caps_nonfixed().
23961
23962 2004-01-27  David Schleef  <ds@schleef.org>
23963
23964         * gst/ac3parse/gstac3parse.c: update to checklist 5
23965         * gst/adder/gstadder.c: rewrite negotiation.  update to checklist 5
23966         * gst/audioconvert/gstaudioconvert.c: update to checklist 5
23967         * gst/audioscale/gstaudioscale.c: same
23968         * gst/auparse/gstauparse.c: same
23969         * gst/avi/gstavidemux.c: same
23970
23971 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23972
23973         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_sink_event):
23974           stop processing after EOS
23975
23976 2004-01-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
23977
23978         * gst/asfdemux/asfheaders.h:
23979         * gst/asfdemux/gstasfdemux.c:
23980         * gst/asfdemux/gstasfmux.c: (gst_asfmux_put_guid),
23981         (gst_asfmux_put_string), (gst_asfmux_put_wav_header),
23982         (gst_asfmux_put_vid_header), (gst_asfmux_put_bmp_header):
23983           lot's of fixes to make data extraction simpler and get the code
23984           architecture and compiler independant. Add debugging category
23985         * gst/goom/gstgoom.c: (gst_goom_change_state):
23986           reset channel count on PAUSED=>READY, not READY=>PAUSED
23987
23988 2004-01-26  Colin Walters  <walters@verbum.org>
23989
23990         * ext/gnomevfs/gstgnomevfssrc.c (gst_gnomevfssrc_get): Remove ugly
23991         code to pull a bigger buffer in iradio mode.  This as a side effect
23992         makes typefinding work.
23993
23994 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
23995
23996         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
23997         Fix SVQ3 decoding on PPC
23998
23999 2004-01-26  Julien MOUTTE <julien@moutte.net>
24000
24001         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain): Dunno how
24002         that one managed to stay there... Fixed.
24003
24004 2004-01-26  Jeremy Simon  <jesimon@libertysurf.fr>
24005
24006         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps),
24007         (gst_ffmpeg_caps_to_extradata), (gst_ffmpeg_caps_to_pixfmt):
24008         * gst/qtdemux/qtdemux.c: (plugin_init), (qtdemux_parse_trak),
24009         (qtdemux_video_caps):
24010         * gst/qtdemux/qtdemux.h:
24011         Add SVQ3 specific flags to qtdemux and ffmpeg
24012
24013 2004-01-26  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24014
24015         * gst-libs/gst/audio/audio.h:
24016           remove buffer-frames from audio caps
24017         * gst/audioconvert/gstaudioconvert.c:
24018           fix plugin to really work.
24019
24020 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24021
24022         * gst-libs/gst/mixer/mixer.c:
24023         * gst-libs/gst/propertyprobe/propertyprobe.c:
24024         * gst-libs/gst/tuner/tuner.c: (gst_tuner_find_norm_by_name),
24025         (gst_tuner_find_channel_by_name):
24026         * gst-libs/gst/tuner/tuner.h:
24027           Add gtk-doc style comments. Also fix a function name.
24028
24029 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24030
24031         * ext/divx/gstdivxdec.c: (gst_divxdec_init),
24032         (gst_divxdec_negotiate):
24033           Fix for new capsnego - also fixes gst-player with divxdec.
24034
24035 2004-01-25  Julien MOUTTE  <julien@moutte.net>
24036
24037         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
24038         (gst_play_identity_handoff), (gst_play_set_location),
24039         (gst_play_set_visualization), (gst_play_connect_visualization): Another
24040         try in visualization implementation. Still have an issue with switch
24041         blocking when pulling from video_queue and only audio comes out of
24042         spider.
24043         * gst/switch/gstswitch.c: (gst_switch_release_pad),
24044         (gst_switch_poll_sinkpads), (gst_switch_class_init): Implementing pad
24045         release method. And check if the pad is usable before pulling.
24046
24047 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24048
24049         * gst/videofilter/gstvideobalance.c: (gst_videobalance_dispose),
24050         (gst_videobalance_init),
24051         (gst_videobalance_colorbalance_list_channels),
24052         (gst_videobalance_colorbalance_set_value),
24053         (gst_videobalance_colorbalance_get_value),
24054         (gst_videobalance_update_properties),
24055         (gst_videobalance_update_tables_planar411),
24056         (gst_videobalance_planar411):
24057         * gst/videofilter/gstvideobalance.h:
24058           Implement lookup-tables. +/- 10x faster.
24059
24060 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24061
24062         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
24063         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
24064           The index reading was broken. The rest worked fine, but the whole
24065           goal of my rewrite was to make avidemux readable, and this was
24066           not at all readable. Please use typed variables.
24067
24068 2004-01-25  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24069
24070         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
24071           Additional pad usability check.
24072         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
24073         (mp1videoparse_find_next_gop), (gst_mp1videoparse_time_code),
24074         (gst_mp1videoparse_real_chain):
24075           Fix MPEG video stream parsing. The original plugin had several
24076           issues, including not timestamping streams where the source was
24077           not timestamped (this happens with PTS values in mpeg system
24078           streams, but MPEG video is also a valid stream on its own so
24079           that needs timestamps too). We use the display time code for that
24080           for now. Also, if one incoming buffer contains multiple valid
24081           frames, we push them all on correctly now, including proper EOS
24082           handling. Lastly, several potential segfaults were fixed, and we
24083           properly sync on new sequence/gop headers to include them in next,
24084           not previous frames (since they're header for the next frame, not
24085           the previous). Also see #119206.
24086         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain),
24087         (bpf_from_header):
24088           Move caps setting so we only do it after finding several valid
24089           MPEG-1 fraes sequentially, not right after the first one (which
24090           might be coincidental).
24091         * gst/typefind/gsttypefindfunctions.c: (mpeg1_sys_type_find),
24092         (mpeg_video_type_find), (mpeg_video_stream_type_find),
24093         (plugin_init):
24094           Add unsynced MPEG video stream typefinding, and change some
24095           probability values so we detect streams rightly. The idea is as
24096           follows: I can have an unsynced system stream which contains
24097           video. In the current code, I would randomly get a type for either
24098           system or video stream type found, because the probabilities are
24099           being calculated rather randomly. I now use fixed values, so we
24100           always prefer system stream if that was found (and that is how it
24101           should be). If no system stream was found, we can still identity                the stream as video-only.
24102
24103 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24104
24105         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_avih),
24106         (gst_avi_demux_stream_odml), (gst_avi_demux_stream_index):
24107           don't write to buffer. Extract data without the need of
24108           __attribute__ ((packed))
24109
24110 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24111
24112         * gst/typefind/gsttypefindfunctions.c: (mpeg1_parse_header),
24113         (mpeg1_sys_type_find):
24114           Fix MPEG-1 stream typefinding.
24115
24116 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24117
24118         * gst/typefind/gsttypefindfunctions.c: (mpeg2_sys_type_find):
24119           Fix typefinding for MPEG-1 system streams, similar to MPEG-2.
24120
24121 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24122
24123         * ext/esd/esdsink.c: (gst_esdsink_open_audio):
24124         * ext/esd/gstesd.c: (plugin_init):
24125           private debugging, better error reporting
24126
24127 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24128
24129         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_class_init),
24130         (gst_riff_read_init), (gst_riff_read_change_state):
24131         * gst-libs/gst/riff/riff-read.h:
24132           Remove stuff fromold metadata system.
24133
24134 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24135
24136         * ext/ogg/gstoggdemux.c:
24137           Fix wrong file comment.
24138         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_info):
24139         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_header):
24140           Add metadata reading properly.
24141
24142 2004-01-23  Thomas Vander Stichele  <thomas at apestaart dot org>
24143
24144         * ext/Makefile.am:
24145           Fix nas DIST_SUBDIRS
24146           Uraeus:
24147           Fix bug where make distcheck doesn't get run on adding stuff to
24148           the build.
24149
24150 2004-01-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24151
24152         * ext/divx/gstdivxdec.c: (gst_divxdec_init), (gst_divxdec_setup):
24153         * ext/divx/gstdivxdec.h:
24154           Fix divx3 ("msmpeg4") playback using divxdec.
24155
24156 2004-01-23  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24157
24158         * gst/typefind/gsttypefindfunctions.c:
24159         (mp3_type_frame_length_from_header): fix bug in length computation
24160         (mp3_type_find): improve debugging output
24161
24162 2004-01-23  Julien MOUTTE  <julien@moutte.net>
24163
24164         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
24165         (gst_play_set_location), (gst_play_seek_to_time),
24166         (gst_play_set_audio_sink), (gst_play_set_visualization),
24167         (gst_play_connect_visualization), (gst_play_get_sink_element): Reworked
24168         the pipeline from scratch. Visualization is back and switch went out as
24169         i realized it was not possible to use the way i wanted.
24170         * sys/ximage/ximagesink.c: (gst_ximagesink_imagepool_clear),
24171         (gst_ximagesink_change_state), (gst_ximagesink_dispose): Move xcontext
24172         clearing in state change from READY to NULL. So that one can clean the
24173         X ressources keeping the element.
24174         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24175         (gst_xvimagesink_imagepool_clear), (gst_xvimagesink_change_state),
24176         (gst_xvimagesink_colorbalance_set_value),
24177         (gst_xvimagesink_colorbalance_get_value),
24178         (gst_xvimagesink_set_property), (gst_xvimagesink_dispose),
24179         (gst_xvimagesink_init): Same xcontext cleaning than ximagesink in state
24180         change from READY to NULL and fixed some stupid bugs in colorbalance
24181         get/set values. Also added the following feature : when nobody tries to
24182         set some values to the colorbalance levels before the xcontext is
24183         grabbed, then when creating channels list from Xv attributes we set the
24184         internal values to the Xv defaults. This way we handle buggy Xv drivers
24185         that set default hue values far from the middle of the range (Thanks
24186         to Jon Trowbridge for pointing that issue).
24187         * sys/xvimage/xvimagesink.h: Adding a cb_changed boolean to know if
24188         colorbalance levels have been set before xcontext is grabbed.
24189
24190 2004-01-22  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24191
24192         * sys/oss/gstosselement.c: (gst_osselement_class_probe_devices):
24193           Fix the ossmixer case where we shouldn't open /dev/dsp* because
24194           it might block operations (which is bad for a mixer).
24195
24196 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
24197
24198         * gst-libs/gst/media-info/media-info-priv.c: (have_type_callback),
24199         (deep_notify_callback), (gmi_set_decoder), (gmi_clear_decoder),
24200         (gmip_find_type_pre):
24201         * gst-libs/gst/media-info/media-info-priv.h:
24202         * gst-libs/gst/media-info/media-info.c:
24203         (gst_media_info_instance_init), (gst_media_info_read_idler):
24204         add fakesink to get caps on decoder src pad again
24205         fix callback prototype to match new have_type signal signature
24206
24207 2004-01-22  Thomas Vander Stichele  <thomas at apestaart dot org>
24208
24209         * gst/adder/gstadder.c: (gst_adder_link):
24210           fix non-compile and cut-n-paste code
24211
24212 2004-01-21  David Schleef  <ds@schleef.org>
24213
24214         * ext/swfdec/gstswfdec.c: (gst_swfdec_video_getcaps),
24215         (gst_swfdec_video_link), (copy_image), (gst_swfdec_loop),
24216         (gst_swfdec_init), (gst_swfdec_change_state):
24217         * ext/swfdec/gstswfdec.h:
24218         Fix negotiation.
24219         * gst/adder/gstadder.c: (gst_adder_link), (gst_adder_init),
24220         (gst_adder_request_new_pad): Fix negotiation.
24221         * gst/goom/gstgoom.c: (gst_goom_init), (gst_goom_src_fixate):
24222         Add a fixate function.
24223         * gst/intfloat/gstfloat2int.c:
24224         * gst/intfloat/gstfloat2int.h:
24225         * gst/intfloat/gstint2float.c:
24226         * gst/intfloat/gstint2float.h:
24227         Completely rewrite the negotiation.  Doesn't quite work yet,
24228         due to some buffer-frames problem.
24229
24230 2004-01-21  Thomas Vander Stichele  <thomas at apestaart dot org>
24231
24232         * ext/gnomevfs/gstgnomevfssrc.c:
24233         * sys/v4l2/v4l2_calls.h:
24234           fix includes for distcheck
24235
24236 2004-01-21  Christian Schaller <uraeus@gnome.org>
24237
24238         * ext/nas/
24239         Add libnas (network audio system) plugin, patch from Arwed von Merkatz
24240         based on earlier patch from Laurent Vivier
24241
24242 2004-01-20  Jeremy Simon  <jesimon@libertysurf.fr>
24243
24244         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_caps_to_extradata):
24245         Fix wma caps property
24246         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_audio_caps):
24247         Fix typo (flags1 and flags2)
24248
24249 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24250
24251         * gst-libs/gst/media-info/media-info-priv.c:
24252         (deep_notify_callback), (gmi_seek_to_track), (gmi_get_decoder),
24253         (gmip_find_type_pre), (gmip_find_type), (gmip_find_stream_post),
24254         (gmip_find_stream), (gmip_find_track_metadata),
24255         (gmip_find_track_streaminfo_post), (gmip_find_track_streaminfo),
24256         (gmip_find_track_format):
24257         * gst-libs/gst/media-info/media-info-priv.h:
24258         * gst-libs/gst/media-info/media-info-test.c: (main):
24259         * gst-libs/gst/media-info/media-info.c: (gst_media_info_init),
24260         (gst_media_info_read_idler), (gst_media_info_read):
24261         * gst-libs/gst/media-info/media-info.h:
24262           register debugging category and use it for debugging
24263
24264 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24265
24266         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_update_streaminfo),
24267         (gst_vorbisfile_new_link):
24268           signal streaminfo through tags
24269
24270 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24271
24272         * ext/mplex/gstmplex.cc:
24273         * ext/mplex/gstmplexibitstream.cc:
24274           g++ doesn't like NULL in our i18n/error macros, should be
24275           either (NULL) or ("").
24276
24277 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24278
24279         * sys/dxr3/dxr3audiosink.c:
24280         * sys/dxr3/dxr3init.c:
24281         * sys/dxr3/dxr3spusink.c: (dxr3spusink_close):
24282         * sys/dxr3/dxr3videosink.c: (dxr3videosink_close):
24283           Fix more error error error errors (missing includes here).
24284
24285 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24286
24287         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24288           fix thomas' error errors.
24289
24290 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24291
24292         * ext/mpeg2enc/gstmpeg2enc.cc:
24293           fix error errors.
24294
24295 2004-01-20  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24296
24297         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
24298         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
24299           Fix for new error system.
24300
24301 2004-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
24302
24303         * ext/divx/gstdivxenc.c: (gst_divxenc_setup), (gst_divxenc_chain):
24304           fix for new error reporting
24305
24306 2004-01-20  David Schleef  <ds@schleef.org>
24307
24308         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
24309         (gst_ximagesink_xcontext_get), (gst_ximagesink_getcaps),
24310         (gst_ximagesink_set_xwindow_id): Change to using a framerate
24311         of [1,100] instead of [0,MAX], since 0 isn't handled correctly,
24312         and neither is 100+, most likely.
24313         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support),
24314         (gst_xvimagesink_getcaps): same
24315
24316 2004-01-19  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24317
24318         * configure.ac:
24319           Up version requirement to 2.0.3 (not yet released) to avoid symbol
24320           clashes with ffmpeg.
24321
24322 2004-01-20  Julien MOUTTE  <julien@moutte.net>
24323
24324         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
24325         (gst_switch_init): Fixed switch element : proxying link and setting
24326         caps from src to sink on request.
24327
24328 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24329
24330         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_overlay):
24331         * sys/v4l2/v4l2-overlay_calls.c: (gst_v4l2_set_display),
24332         (gst_v4l2_set_window), (gst_v4l2_enable_overlay):
24333         fix element_error
24334
24335 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24336
24337         * sys/v4l/v4l_calls.h:
24338         * sys/v4l2/v4l2_calls.h:
24339           element_error fixes
24340
24341 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24342
24343         * gst-libs/gst/gst-i18n-plugin.h:
24344           add locale.h
24345           remove config.h inclusion
24346
24347 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24348
24349         * autogen.sh:
24350           adding autopoint invocation
24351         * Makefile.am:
24352         * configure.ac:
24353         * gst-libs/gst/gettext.h:
24354           adding gettext bits
24355         * ext/audiofile/gstafsink.c: (gst_afsink_plugin_init):
24356         * ext/audiofile/gstafsrc.c: (gst_afsrc_plugin_init):
24357         * ext/gnomevfs/gstgnomevfs.c: (plugin_init):
24358         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
24359         (gst_gnomevfssink_close_file):
24360         * ext/gnomevfs/gstgnomevfssrc.c: (gst_gnomevfssrc_open_file):
24361         * ext/sndfile/gstsf.c: (gst_sf_loop), (plugin_init):
24362         * gst-libs/gst/gst-i18n-plugin.h:
24363         * gst/avi/gstavi.c: (plugin_init):
24364         * sys/dxr3/dxr3init.c: (plugin_init):
24365         * sys/dxr3/dxr3videosink.c: (dxr3videosink_write_data):
24366         * sys/oss/gstossaudio.c: (plugin_init):
24367         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
24368         * sys/v4l/gstv4l.c: (plugin_init):
24369         * sys/v4l/v4l_calls.c: (gst_v4l_open):
24370         * sys/v4l2/gstv4l2.c: (plugin_init):
24371         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
24372         (gst_v4l2_fill_lists), (gst_v4l2_get_norm), (gst_v4l2_set_norm),
24373         (gst_v4l2_get_input), (gst_v4l2_set_input), (gst_v4l2_get_output),
24374         (gst_v4l2_set_output), (gst_v4l2_get_frequency),
24375         (gst_v4l2_set_frequency), (gst_v4l2_signal_strength),
24376         (gst_v4l2_get_attribute), (gst_v4l2_set_attribute):
24377           make sure locale and translation domain are set
24378           fix translated strings
24379         * po/.cvsignore:
24380         * po/LINGUAS:
24381         * po/Makevars:
24382         * po/POTFILES.in:
24383         * po/nl.po:
24384           put translation files into place
24385         * sys/xvideo/imagetest.c: (main):
24386         * ext/dv/demo-play.c: (main):
24387           fix unnecessary translations
24388
24389 2004-01-19  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
24390
24391         * ext/sndfile/gstsf.c:
24392         * gst/avi/gstavimux.c:
24393         * ext/audiofile/gstafsink.c:
24394         * ext/audiofile/gstafsrc.c:
24395         * ext/gnomevfs/gstgnomevfssink.c:
24396         * ext/gnomevfs/gstgnomevfssrc.c:
24397         * sys/oss/gstosselement.c:
24398         * sys/v4l/v4l_calls.h:
24399           fix i18n include
24400
24401 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24402
24403         * sys/v4l2/v4l2_calls.c: (gst_v4l2_get_capabilities),
24404         (gst_v4l2_fill_lists), (gst_v4l2_open), (gst_v4l2_get_norm),
24405         (gst_v4l2_set_norm), (gst_v4l2_get_input), (gst_v4l2_set_input),
24406         (gst_v4l2_get_output), (gst_v4l2_set_output),
24407         (gst_v4l2_get_frequency), (gst_v4l2_set_frequency),
24408         (gst_v4l2_signal_strength), (gst_v4l2_get_attribute),
24409         (gst_v4l2_set_attribute):
24410         update to new error handling
24411
24412 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24413
24414         * ext/sidplay/gstsiddec.cc:
24415         * gst/modplug/gstmodplug.cc:
24416           parenthese NULL because C++ seems angry about it
24417
24418 2004-01-19  Thomas Vander Stichele  <thomas at apestaart dot org>
24419
24420         * gst-libs/gst/gst-i18n-plugin.h:
24421           add skeleton i18n stuff, but needs to be further implemented
24422
24423 2004-01-18  Thomas Vander Stichele  <thomas at apestaart dot org>
24424
24425         * examples/gstplay/player.c: (main):
24426         * ext/aalib/gstaasink.c: (gst_aasink_open):
24427         * ext/alsa/gstalsa.c: (gst_alsa_link), (gst_alsa_xrun_recovery):
24428         * ext/alsa/gstalsasink.c: (gst_alsa_sink_loop):
24429         * ext/alsa/gstalsasrc.c: (gst_alsa_src_loop):
24430         * ext/audiofile/gstafsink.c: (gst_afsink_open_file),
24431         (gst_afsink_close_file):
24432         * ext/audiofile/gstafsrc.c: (gst_afsrc_open_file),
24433         (gst_afsrc_close_file):
24434         * ext/divx/gstdivxdec.c: (gst_divxdec_setup), (gst_divxdec_chain):
24435         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
24436         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_user_op), (dvdnavsrc_get):
24437         * ext/esd/esdmon.c: (gst_esdmon_get):
24438         * ext/esd/esdsink.c: (gst_esdsink_chain):
24439         * ext/faac/gstfaac.c: (gst_faac_chain):
24440         * ext/faad/gstfaad.c: (gst_faad_chain):
24441         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_chain):
24442         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
24443         * ext/ffmpeg/gstffmpegmux.c: (gst_ffmpegmux_loop):
24444         * ext/flac/gstflacdec.c: (gst_flacdec_error_callback),
24445         (gst_flacdec_loop):
24446         * ext/flac/gstflacenc.c: (gst_flacenc_chain):
24447         * ext/flac/gstflactag.c: (gst_flac_tag_chain):
24448         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_chain):
24449         * ext/gnomevfs/gstgnomevfssink.c: (gst_gnomevfssink_open_file),
24450         (gst_gnomevfssink_close_file):
24451         * ext/gnomevfs/gstgnomevfssrc.c: (audiocast_init),
24452         (gst_gnomevfssrc_open_file):
24453         * ext/ivorbis/vorbisfile.c: (gst_ivorbisfile_loop):
24454         * ext/lame/gstlame.c: (gst_lame_sink_link), (gst_lame_chain):
24455         * ext/lcs/gstcolorspace.c: (gst_colorspace_srcconnect_func):
24456         * ext/mad/gstid3tag.c: (gst_id3_tag_handle_event),
24457         (gst_id3_tag_do_typefind), (gst_id3_tag_chain):
24458         * ext/mad/gstmad.c: (gst_mad_chain):
24459         * ext/mikmod/gstmikmod.c: (gst_mikmod_loop):
24460         * ext/mpeg2dec/gstmpeg2dec.c:
24461         * ext/mpeg2enc/gstmpeg2enc.cc:
24462         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24463         * ext/mplex/gstmplex.cc:
24464         * ext/mplex/gstmplexibitstream.cc:
24465         * ext/ogg/gstoggdemux.c: (gst_ogg_demux_chain),
24466         (gst_ogg_demux_push), (gst_ogg_pad_push):
24467         * ext/raw1394/gstdv1394src.c:
24468         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_lock),
24469         (gst_sdlvideosink_initsdl), (gst_sdlvideosink_create):
24470         * ext/sidplay/gstsiddec.cc:
24471         * ext/sndfile/gstsf.c: (gst_sf_open_file), (gst_sf_close_file),
24472         (gst_sf_loop):
24473         * ext/speex/gstspeexenc.c: (gst_speexenc_chain):
24474         * ext/tarkin/gsttarkindec.c: (gst_tarkindec_chain):
24475         * ext/tarkin/gsttarkinenc.c: (gst_tarkinenc_chain):
24476         * ext/vorbis/vorbisenc.c: (gst_vorbisenc_chain):
24477         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_loop):
24478         * ext/xvid/gstxviddec.c: (gst_xviddec_setup), (gst_xviddec_chain):
24479         * ext/xvid/gstxvidenc.c: (gst_xvidenc_setup), (gst_xvidenc_chain):
24480         * gst-libs/gst/Makefile.am:
24481         * gst-libs/gst/riff/riff-read.c: (gst_riff_peek_head),
24482         (gst_riff_read_element_data), (gst_riff_read_seek),
24483         (gst_riff_peek_list), (gst_riff_read_list), (gst_riff_read_header):
24484         * gst/adder/gstadder.c: (gst_adder_parse_caps), (gst_adder_loop):
24485         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment),
24486         (gst_asf_demux_process_stream), (gst_asf_demux_get_stream):
24487         * gst/avi/gstavidemux.c: (gst_avi_demux_stream_init),
24488         (gst_avi_demux_add_stream), (gst_avi_demux_stream_header):
24489         * gst/avi/gstavimux.c: (gst_avimux_stop_file):
24490         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
24491         * gst/goom/gstgoom.c: (gst_goom_chain):
24492         * gst/id3/gstid3types.c: (gst_id3types_loop):
24493         * gst/intfloat/gstfloat2int.c: (gst_float2int_loop):
24494         * gst/intfloat/gstint2float.c: (gst_int2float_chain_gint16):
24495         * gst/matroska/ebml-read.c: (gst_ebml_read_element_id),
24496         (gst_ebml_read_element_length), (gst_ebml_read_element_data),
24497         (gst_ebml_read_seek), (gst_ebml_read_uint), (gst_ebml_read_sint),
24498         (gst_ebml_read_float), (gst_ebml_read_header):
24499         * gst/matroska/matroska-demux.c: (gst_matroska_demux_init_stream),
24500         (gst_matroska_demux_parse_blockgroup):
24501         * gst/modplug/gstmodplug.cc:
24502         * gst/monoscope/gstmonoscope.c: (gst_monoscope_chain):
24503         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
24504         * gst/oneton/gstoneton.c: (gst_oneton_chain):
24505         * gst/silence/gstsilence.c: (gst_silence_get):
24506         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24507         * gst/smpte/gstsmpte.c: (gst_smpte_loop):
24508         * gst/speed/gstspeed.c: (speed_loop):
24509         * gst/tags/gstvorbistag.c: (gst_vorbis_tag_chain):
24510         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
24511         * gst/volenv/gstvolenv.c: (gst_volenv_chain):
24512         * gst/wavenc/gstwavenc.c: (gst_wavenc_chain):
24513         * gst/wavparse/gstwavparse.c: (gst_wavparse_parse_fmt),
24514         (gst_wavparse_loop):
24515         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_open),
24516         (dxr3audiosink_set_mode_pcm), (dxr3audiosink_set_mode_ac3),
24517         (dxr3audiosink_close):
24518         * sys/dxr3/dxr3spusink.c: (dxr3spusink_open), (dxr3spusink_close):
24519         * sys/dxr3/dxr3videosink.c: (dxr3videosink_open),
24520         (dxr3videosink_close), (dxr3videosink_write_data):
24521         * sys/oss/gstosselement.c: (gst_osselement_open_audio):
24522         * sys/oss/gstosselement.h:
24523         * sys/oss/gstosssink.c: (gst_osssink_get_type), (gst_osssink_init),
24524         (gst_osssink_chain):
24525         * sys/oss/gstosssrc.c: (gst_osssrc_get):
24526         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
24527         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_buffer_free):
24528         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_buffer_free):
24529         * sys/v4l/v4l-overlay_calls.c: (gst_v4l_set_window),
24530         (gst_v4l_enable_overlay):
24531         * sys/v4l/v4l_calls.c: (gst_v4l_get_capabilities), (gst_v4l_open),
24532         (gst_v4l_set_chan_norm), (gst_v4l_get_signal),
24533         (gst_v4l_get_frequency), (gst_v4l_set_frequency),
24534         (gst_v4l_get_picture), (gst_v4l_set_picture), (gst_v4l_get_audio),
24535         (gst_v4l_set_audio):
24536         * sys/v4l/v4l_calls.h:
24537         * sys/v4l/v4lmjpegsink_calls.c: (gst_v4lmjpegsink_sync_thread),
24538         (gst_v4lmjpegsink_queue_frame), (gst_v4lmjpegsink_set_playback),
24539         (gst_v4lmjpegsink_playback_init),
24540         (gst_v4lmjpegsink_playback_start):
24541         * sys/v4l/v4lmjpegsrc_calls.c: (gst_v4lmjpegsrc_queue_frame),
24542         (gst_v4lmjpegsrc_sync_next_frame), (gst_v4lmjpegsrc_set_capture),
24543         (gst_v4lmjpegsrc_set_capture_m), (gst_v4lmjpegsrc_capture_init),
24544         (gst_v4lmjpegsrc_requeue_frame):
24545         * sys/v4l/v4lsrc_calls.c: (gst_v4lsrc_queue_frame),
24546         (gst_v4lsrc_sync_frame), (gst_v4lsrc_capture_init),
24547         (gst_v4lsrc_requeue_frame), (gst_v4lsrc_try_palette):
24548         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_get):
24549         * sys/v4l2/v4l2src_calls.c: (gst_v4l2src_fill_format_list),
24550         (gst_v4l2src_queue_frame), (gst_v4l2src_grab_frame),
24551         (gst_v4l2src_get_capture), (gst_v4l2src_set_capture),
24552         (gst_v4l2src_capture_init), (gst_v4l2src_capture_start),
24553         (gst_v4l2src_capture_stop):
24554         * sys/vcd/vcdsrc.c: (vcdsrc_open_file):
24555         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
24556         (gst_ximagesink_chain):
24557         * sys/xvideo/xvideosink.c: (gst_xvideosink_buffer_new),
24558         (gst_xvideosink_sinkconnect), (gst_xvideosink_chain),
24559         (gst_xvideosink_xwindow_new):
24560         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24561         (gst_xvimagesink_chain):
24562         use new error signal, function and categories
24563
24564 2004-01-18  Jeremy Simon <jesimon@libertysurf.fr>
24565
24566         * configure.ac:
24567         * ext/Makefile.am:
24568         * ext/musicbrainz/gsttrm.c:
24569         * ext/musicbrainz/gsttrm.h:
24570         * ext/musicbrainz/Makefile.am:
24571         Add a trm plugin
24572
24573 2004-01-18  Julien MOUTTE  <julien@moutte.net>
24574
24575         * sys/ximage/ximagesink.c: (gst_ximagesink_set_property),
24576         (gst_ximagesink_get_property), (gst_ximagesink_class_init): Adding
24577         synchronous property for debugging.
24578         * sys/ximage/ximagesink.h: Adding the synchronous boolean flag.
24579         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24580         (gst_xvimagesink_set_property): Moving a pointer declaration to a
24581         smaller block, fixing indent.
24582
24583 2004-01-16  David Schleef  <ds@schleef.org>
24584
24585         * gst/videofilter/gstvideobalance.c: Fix regression; changing a
24586         property affects the video stream.
24587         * sys/xvimage/xvimagesink.c:
24588         * sys/xvimage/xvimagesink.h:
24589         Add synchronous property for debugging.  Should probably be
24590         disabled in non-CVS builds.  Make sure that the Xv attribute
24591         exists before we set it (crash!).  Fix a silly float bug that
24592         caused colorbalance to just not work.
24593
24594 2004-01-17  Christian Schaller <Uraeus@gnome.org>
24595
24596         * tools/gst-launch-ext.in - update for new plugins
24597
24598 2004-01-16  David Schleef  <ds@schleef.org>
24599
24600         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect): Fix use of
24601         already-freed caps.
24602
24603 2994-01-16  Christian Schaller <Uraeus@gnome.org>
24604
24605         * Update spec for new colorspace plugin and libcaca plugin
24606         * Fix compilation of libcaca plugin (clock -> id)
24607
24608 2004-01-16  Julien MOUTTE <julien@moutte.net>
24609
24610         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_update_colorbalance),
24611         (gst_xvimagesink_xcontext_get), (gst_xvimagesink_change_state),
24612         (gst_xvimagesink_set_xwindow_id),
24613         (gst_xvimagesink_colorbalance_set_value),
24614         (gst_xvimagesink_colorbalance_get_value),
24615         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
24616         (gst_xvimagesink_init), (gst_xvimagesink_class_init): Implementing
24617         correct colorbalance properties. They can now be set when the element
24618         is still in NULL state. The values will be committed to the Xv Port
24619         when xcontext is initialized.
24620         * sys/xvimage/xvimagesink.h: Added hue, saturation, contrast,
24621         brightness int values in the GstXvImagesink structure.
24622
24623 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24624
24625         * gst-libs/gst/Makefile.am:
24626           restructure so having local patches works easier.
24627
24628 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24629
24630         * ext/mpeg2enc/Makefile.am:
24631         * ext/mpeg2enc/gstmpeg2enc.cc:
24632         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
24633           Bugfix with respect to EOS handling.
24634
24635 2004-01-16  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24636
24637         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
24638           Link with right caps (else, it segfaults).
24639         * ext/mplex/gstmplexjob.cc:
24640           Fix for slight API change in 1.6.1.93 release of mjpegtools.
24641
24642 2004-01-15  David Schleef  <ds@schleef.org>
24643
24644         * gst-libs/gst/audio/Makefile.am:
24645         Add gstaudiofiltertemplate.c and building of gstaudiofilterexample.c
24646         from the template.
24647         * gst-libs/gst/audio/gstaudiofilter.c:
24648         * gst-libs/gst/audio/gstaudiofilter.h:
24649         Add bytes_per_sample and size and n_samples calculation.
24650         * gst-libs/gst/audio/gstaudiofilterexample.c:
24651         Remove, now autogenerated.
24652         * gst-libs/gst/audio/gstaudiofiltertemplate.c:
24653         Moved from gstaudiofilterexample, object name changed, code added
24654         so that it actually works.
24655         * gst-libs/gst/audio/make_filter:
24656         Script to build an audiofilter subclass from the template.
24657         * gst/colorspace/Makefile.am:
24658         * gst/colorspace/yuv2yuv.c:
24659         Remove file, since it's GPL, and we don't use it.
24660
24661 2004-01-15  Julien MOUTTE  <julien@moutte.net>
24662
24663         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
24664         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Making both of
24665         them use the buffer free function to test how the buffer was allocated.
24666
24667 2004-01-15  David Schleef  <ds@schleef.org>
24668
24669         * ext/esd/esdsink.c: (gst_esdsink_class_init): Remove property
24670         that handles osssink fallback.
24671         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_init),
24672         (gst_audio_convert_getcaps):
24673         * gst/qtdemux/qtdemux.c: (qtdemux_audio_caps):
24674         Add audio/x-qdm2 for QDM2 audio.
24675         * gst/sine/gstsinesrc.c: (gst_sinesrc_get):
24676         * gst/sine/gstsinesrc.h: Add example of how to implement tags.
24677         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps):
24678         Decrease minimum size to 16x16.
24679         * gst/wavparse/gstwavparse.c:
24680         Convert disabled pad template caps to new caps.
24681         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
24682         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24683         (gst_xvimagesink_chain): Throw element error when display cannot
24684         be opened.  Increase minimum framerate to 1.0.  Check the data
24685         free function on a buffer to make sure it is the type we expect
24686         before manipulating it.
24687
24688 2004-01-15  Julien MOUTTE <julien@moutte.net>
24689
24690         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
24691         (gst_videobalance_colorbalance_set_value): Implement passthru if
24692         settings are in the middle.
24693         * tools/gst-launch-ext.in: Stop using xvideosink, use ximagesink.
24694
24695 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24696
24697         * gst/videofilter/Makefile.am:
24698         * gst/volume/Makefile.am:
24699           Since we use videofilter symbols, link to it.
24700
24701 2004-01-15  Julien MOUTTE <julien@moutte.net>
24702
24703         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_interface_init): Setting
24704         mixer interface type to HARDWARE.
24705         * gst-libs/gst/mixer/mixer.c: (gst_mixer_class_init): Adding a default
24706         type to SOFTWARE.
24707         * gst-libs/gst/mixer/mixer.h: Adding mixer interface type and macro.
24708         * gst-libs/gst/mixer/mixertrack.h: Adding mixertrack flag SOFTWARE.
24709         * gst/volume/gstvolume.c: (gst_volume_interface_supported),
24710         (gst_volume_interface_init), (gst_volume_list_tracks),
24711         (gst_volume_set_volume), (gst_volume_get_volume),
24712         (gst_volume_set_mute), (gst_volume_mixer_init),
24713         (gst_volume_dispose), (gst_volume_get_type), (volume_class_init),
24714         (volume_init): Implementing mixer interface.
24715         * gst/volume/gstvolume.h: Adding tracklist for mixer interface.
24716         * sys/oss/gstosselement.c: (gst_osselement_get_type),
24717         (gst_osselement_change_state): Removing some trailing commas in
24718         structures.
24719         * sys/oss/gstossmixer.c: (gst_ossmixer_interface_init): Setting mixer
24720         interface type to HARDWARE.
24721         * sys/v4l/gstv4lcolorbalance.c:
24722         (gst_v4l_color_balance_interface_init): Setting colorbalance interface
24723         type to HARDWARE.
24724         * sys/v4l2/gstv4l2colorbalance.c:
24725         (gst_v4l2_color_balance_interface_init): Setting colorbalance
24726         interface type to HARDWARE.
24727         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): use exactly the
24728         same code than ximagesink for event handling.
24729
24730 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24731
24732         * ext/snapshot/Makefile.am:
24733         * ext/snapshot/gstsnapshot.c: (gst_snapshot_sinkconnect),
24734         (gst_snapshot_chain):
24735         * ext/snapshot/gstsnapshot.h:
24736           This has to be a joke... Snapshot should be connected to a tee,
24737           colorspace element before it and EOS after that, where the other
24738           src of the tee receives normal data.
24739           The current way is *wrong*.
24740
24741 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24742
24743         * ext/hermes/gsthermescolorspace.c:
24744           Fix another compile error. Same as below.
24745
24746 2004-01-15  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24747
24748         * gst/colorspace/gstcolorspace.c:
24749         * gst/colorspace/yuv2yuv.c: (gst_colorspace_yuy2_to_i420),
24750         (gst_colorspace_i420_to_yv12):
24751           Fix compiling... Didn't test if it actually works.
24752
24753 2004-01-15  David Schleef  <ds@schleef.org>
24754
24755         * configure.ac:
24756         * gst/colorspace/Makefile.am:
24757         * gst/colorspace/gstcolorspace.c:
24758         * gst/colorspace/gstcolorspace.h:
24759         * gst/colorspace/yuv2rgb.c:
24760         * gst/colorspace/yuv2rgb.h:
24761         Duplicate the ext/hermes colorspace plugin, and remove Hermes
24762         code and GPL code.  Fix for new caps negotiation.  Rewrite
24763         much of the format handling code, and some of the conversion
24764         code.  Basically, rewrote almost everything.  This element
24765         handles I420, YV12 to RGB conversions.
24766         * ext/hermes/Makefile.am:
24767         * ext/hermes/gsthermescolorspace.c:
24768         Rename colorspace to hermescolorspace.  Fix negotiation issues.
24769         Remove non-Hermes related code.  This element handles lots of
24770         RGB to RGB conversions, but no YUV.
24771         * ext/hermes/gstcolorspace.c:
24772         * ext/hermes/gstcolorspace.h:
24773         * ext/hermes/rgb2yuv.c:
24774         * ext/hermes/yuv2rgb.c:
24775         * ext/hermes/yuv2rgb.h:
24776         * ext/hermes/yuv2rgb_mmx16.s:
24777         * ext/hermes/yuv2yuv.c:
24778         * ext/hermes/yuv2yuv.h:
24779         Remove old code.
24780
24781 2004-01-14  Colin Walters  <walters@verbum.org>
24782
24783         * ext/mad/gstid3tag.c (gst_id3_tag_chain): Don't nego caps if
24784         they've already been.
24785
24786 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24787
24788         * ext/mad/gstid3tag.c: (gst_id3_tag_do_caps_nego):
24789           assume tag mode when pad is not connected
24790
24791 2004-01-15  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24792
24793         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24794           Don't update the time of the clock
24795         (gst_alsa_sink_loop):
24796           sync to the clock given to alsasink, not the own clock
24797         * sys/oss/gstosssink.c: (gst_osssink_chain):
24798           sync to the clock
24799         (gst_osssink_change_state):
24800           activate the clock
24801         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
24802         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
24803           remove bogus code that made DISCONT events unhandled
24804         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_video_caps):
24805           explicitly case to double in _set_simple. (fixes 2nd warning in bug
24806           #131502)
24807         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_read_object_header),
24808         (gst_asf_demux_handle_sink_event), (gst_asf_demux_audio_caps),
24809         (gst_asf_demux_add_audio_stream), (gst_asf_demux_video_caps):
24810           convert g_warning because of wrong asf data to GST_WARNINGs (fixes
24811           2nd warning in bug #131502)
24812
24813 2004-01-14  Julien MOUTTE  <julien@moutte.net>
24814
24815         * gst/videofilter/gstvideobalance.c: (gst_videobalance_init),
24816         (gst_videobalance_colorbalance_set_value),
24817         (gst_videobalance_colorbalance_get_value): Fixing videobalance ranges
24818         for colorbalance interface implementation.
24819         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get),
24820         (gst_ximagesink_set_property), (gst_ximagesink_get_property),
24821         (gst_ximagesink_dispose), (gst_ximagesink_init),
24822         (gst_ximagesink_class_init): Adding DISPLAY property.
24823         * sys/ximage/ximagesink.h: Adding display_name to store display.
24824         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24825         (gst_xvimagesink_set_property), (gst_xvimagesink_get_property),
24826         (gst_xvimagesink_dispose), (gst_xvimagesink_init),
24827         (gst_xvimagesink_class_init): Adding DISPLAY property and colorbalance
24828         properties (they still need polishing though for gst-launch use : no
24829         xcontext yet, i ll do that tomorrow).
24830         * sys/xvimage/xvimagesink.h: Adding display_name to store display.
24831
24832 2004-01-14  Julien MOUTTE  <julien@moutte.net>
24833
24834         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup),
24835         (gst_play_set_location), (gst_play_set_visualization): Preparing
24836         switch integration, adding videobalance in the pipeline.
24837
24838 2004-01-14  Julien MOUTTE <julien@moutte.net>
24839
24840         * gst-libs/gst/colorbalance/colorbalance.c:
24841         (gst_color_balance_class_init): Adding a default type.
24842         * gst-libs/gst/colorbalance/colorbalance.h: Adding a macro to access
24843         the type.
24844         * gst/videofilter/gstvideobalance.c: (gst_videobalance_get_type),
24845         (gst_videobalance_dispose), (gst_videobalance_class_init),
24846         (gst_videobalance_init), (gst_videobalance_interface_supported),
24847         (gst_videobalance_interface_init),
24848         (gst_videobalance_colorbalance_list_channels),
24849         (gst_videobalance_colorbalance_set_value),
24850         (gst_videobalance_colorbalance_get_value),
24851         (gst_videobalance_colorbalance_init): Implementing colorbalance
24852         interface.
24853         * gst/videofilter/gstvideobalance.h: Adding colorbalance channels
24854         list.
24855         * sys/ximage/ximagesink.c: (gst_ximagesink_set_xwindow_id): Fixing a
24856         bug which was triggering a BadAccess X error when setting an overlay
24857         before pad was really negotiated.
24858         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_colorbalance_init):
24859         Using the colorbalance type macro.
24860
24861 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24862
24863         * ext/flac/gstflacenc.c: (gst_flacenc_set_metadata),
24864         (gst_flacenc_chain):
24865           handle tags correctly
24866         * gst/tags/gstid3tag.c: (gst_tag_list_new_from_id3v1):
24867           extract ID3v1 tags correctly
24868
24869 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24870
24871         * gst/typefind/gsttypefindfunctions.c: (matroska_type_find),
24872         (plugin_init):
24873           Improve matroska typefinding for odd-typed headers...
24874
24875 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24876
24877         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
24878           Fix for using incremental number on padnames.
24879
24880 2004-01-14  Ronald Bultje  <rbultje@ronald.bitfreak.net>
24881
24882         * ext/divx/gstdivxdec.c:
24883         * ext/divx/gstdivxenc.c:
24884           Set category to divx4linux instead of divx (too generic).
24885         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
24886         (gst_wavparse_parse_fmt), (gst_wavparse_handle_sink_event),
24887         (gst_wavparse_loop), (gst_wavparse_change_state):
24888         * gst/wavparse/gstwavparse.h:
24889           fix parsing of WAV files with non-standard fmt-tag size and fix
24890           skipping of unrecognized chunks... Someone please fix this thing
24891           to use rifflib so all this is automated.
24892         * sys/v4l/Makefile.am:
24893         * sys/v4l2/Makefile.am:
24894           Add X_CFLAGS because we depend on X (for overlay).
24895
24896 2004-01-14  Jan Schmidt  <thaytan@mad.scientist.com>
24897
24898         * ext/mpeg2dec/gstmpeg2dec.c:
24899           Don't issue a timestamp unless we tagged the frame
24900           with a PTS.
24901
24902 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24903
24904         * gst-libs/gst/play/gstplay.c: (gst_play_tick_callback):
24905           Query the audio element to get the time, not the clock. We're
24906           interested in the element's time here.
24907
24908 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24909
24910         * ext/aalib/gstaasink.c: (gst_aasink_chain):
24911         * ext/alsa/gstalsasink.c: (gst_alsa_sink_check_event):
24912         * ext/esd/esdsink.c: (gst_esdsink_chain):
24913         * ext/libcaca/gstcacasink.c: (gst_cacasink_chain):
24914         * ext/mas/massink.c: (gst_massink_chain):
24915         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_chain):
24916         * gst/matroska/matroska-demux.c: (gst_matroska_demux_parse_index),
24917         (gst_matroska_demux_parse_metadata):
24918         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop),
24919         (gst_mpeg_parse_release_locks):
24920         * gst/tcp/gsttcpsink.c: (gst_tcpsink_chain):
24921         * gst/udp/gstudpsink.c: (gst_udpsink_chain):
24922         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
24923         * sys/oss/gstosssink.c: (gst_osssink_init), (gst_osssink_chain),
24924         (gst_osssink_change_state):
24925         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_chain):
24926         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
24927         * sys/xvideo/xvideosink.c: (gst_xvideosink_chain),
24928         (gst_xvideosink_release_locks):
24929         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain):
24930           use element time.
24931         * ext/alsa/gstalsaclock.c: (gst_alsa_clock_start),
24932         (gst_alsa_clock_stop):
24933         * gst-libs/gst/audio/audioclock.c: (gst_audio_clock_set_active),
24934         (gst_audio_clock_get_internal_time):
24935           simplify for use with new clocking code.
24936         * testsuite/alsa/Makefile.am:
24937         * testsuite/alsa/sinesrc.c: (sinesrc_init), (sinesrc_force_caps):
24938           fix testsuite for new caps system
24939
24940 2004-01-14  Benjamin Otte  <in7y118@public.uni-hamburg.de>
24941
24942         * ext/flac/gstflacdec.c: (gst_flacdec_update_metadata):
24943         * ext/flac/gstflacenc.c: (add_one_tag):
24944           length is already host endian, no need to convert. Fixes playback of
24945           tagged files on PPC. (bug #128384)
24946
24947 2004-01-13  Julien MOUTTE <julien@moutte.net>
24948
24949         * gst-libs/gst/colorbalance/colorbalance.h: Adding a type to the
24950         colorbalance interface stating if it is hardware based or software
24951         based.
24952         * gst/videofilter/gstvideobalance.c: (gst_videobalance_planar411):
24953         Removing a trailing comma.
24954         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24955         (gst_xvimagesink_colorbalance_init): Integrating a patch from Jon
24956         Trowbridge <trow@ximian.com> querying Xv adaptor for min/max value as
24957         the documentation seems to be wrong on the -1000 to 1000 interval.
24958
24959 2004-01-12  David Schleef  <ds@schleef.org>
24960
24961         * gst/debug/efence.c: (gst_efence_init), (gst_efence_chain),
24962         (gst_efence_buffer_alloc), (gst_fenced_buffer_new),
24963         (gst_fenced_buffer_default_free), (gst_fenced_buffer_default_copy):
24964         Fix negotiation.  Add a bufferalloc function for the sink pad,
24965         and generally clean up some of the code.
24966
24967 2004-01-12  Julien MOUTTE <julien@moutte.net>
24968
24969         * gst-libs/gst/colorbalance/colorbalancechannel.c:
24970         (gst_color_balance_channel_dispose): Adding safety check in dispose
24971         method.
24972         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xcontext_get),
24973         (gst_xvimagesink_xcontext_clear),
24974         (gst_xvimagesink_interface_supported),
24975         (gst_xvimagesink_colorbalance_list_channels),
24976         (gst_xvimagesink_colorbalance_set_value),
24977         (gst_xvimagesink_colorbalance_get_value),
24978         (gst_xvimagesink_colorbalance_init), (gst_xvimagesink_get_type):
24979         Adding colorbalance interface support to set XV parameters such as
24980         HUE, BRIGHTNESS, CONTRAST, SATURATION.
24981         * sys/xvimage/xvimagesink.h: Adding the channels list for colorbalance
24982         interface.
24983
24984 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
24985
24986         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_get_type),
24987         (gst_audio_convert_class_init), (gst_audioconvert_getcaps),
24988         (gst_audio_convert_init), (gst_audio_convert_set_property),
24989         (gst_audio_convert_get_property), (gst_audio_convert_chain),
24990         (gst_audio_convert_link),
24991         (gst_audio_convert_buffer_to_default_format),
24992         (gst_audio_convert_buffer_from_default_format), (plugin_init):
24993           - implement _getcaps and use it
24994           - improve linking
24995           - remove float caps since no float conversion is actually done
24996           - remove properties and arguments that were to be used for rate
24997             conversion
24998
24999 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25000
25001         * gst-libs/gst/audio/audio.c: (_gst_audio_structure_set_list),
25002         (gst_audio_structure_set_int):
25003         * gst-libs/gst/audio/audio.h:
25004           add helper functions for _getcaps matching the standard audio
25005           templates
25006
25007 2004-01-12  David Schleef  <ds@schleef.org>
25008
25009         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_link):
25010         Test that pad is negotiated before getting its caps.
25011
25012 2004-01-12  Julien MOUTTE <julien@moutte.net>
25013
25014         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element): When
25015         analyzing the pads of an element the bin is mostly in READY state so
25016         no caps were negotiated. This helper function needs to work with
25017         _get_caps directly then. I was not freeing them though, added that to
25018         fix the mem leak.
25019
25020 2004-01-12  Julien MOUTTE <julien@moutte.net>
25021
25022         * sys/ximage/ximagesink.c: (gst_ximagesink_chain):
25023         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain): Fixing the
25024         direct put buffers detection. I prefer checking GST_BUFFER_PRIVATE
25025         than the free_func.
25026
25027 2004-01-12  Thomas Vander Stichele  <thomas at apestaart dot org>
25028
25029         * sys/oss/gstossaudio.c: (plugin_init):
25030         * sys/oss/gstosselement.c: (gst_osselement_sync_parms):
25031         * sys/oss/gstosselement.h:
25032           make an oss debugging category
25033           make failure more descriptive
25034
25035 2004-01-11  David Schleef  <ds@schleef.org>
25036
25037         * ext/ffmpeg/gstffmpeg.c:
25038         * ext/ffmpeg/gstffmpegcodecmap.c:
25039         * ext/ffmpeg/gstffmpegdec.c:
25040         * ext/ffmpeg/gstffmpegenc.c:
25041         * ext/ffmpeg/gstffmpegprotocol.c:
25042         * ext/gdk_pixbuf/gstgdkanimation.c:
25043         * ext/jpeg/gstjpeg.c:
25044         * ext/libpng/gstpng.c:
25045         * ext/mpeg2dec/perftest.c:
25046         * ext/speex/gstspeex.c:
25047         * gst-libs/gst/resample/dtos.c:
25048         * gst/intfloat/gstintfloatconvert.c:
25049         * gst/oneton/gstoneton.c:
25050         * gst/rtjpeg/RTjpeg.c:
25051         * gst/rtp/gstrtp.c:
25052         * sys/dxr3/dxr3init.c:
25053         * sys/glsink/gstgl_nvimage.c:
25054         * sys/glsink/gstgl_pdrimage.c:
25055         * sys/glsink/gstglsink.c:
25056         * testsuite/gst-lint:
25057         Make sure everybody wraps #include "config.h" in #ifdef HAVE_CONFIG_H
25058
25059 2004-01-11  David Schleef  <ds@schleef.org>
25060
25061         * ext/alsa/gstalsasrc.c: (gst_alsa_src_set_caps):
25062         * ext/faac/gstfaac.c: (gst_faac_sinkconnect):
25063         * ext/gdk_pixbuf/gstgdkanimation.c:
25064         (gst_gdk_animation_iter_create_pixbuf):
25065         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
25066         (gst_gdk_pixbuf_chain):
25067         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25068         * ext/jack/gstjack.c: (gst_jack_change_state):
25069         * ext/xvid/gstxviddec.c: (gst_xviddec_sink_link):
25070         * gst-libs/gst/play/gstplay.c: (gst_play_get_sink_element):
25071         * gst-libs/gst/play/play.c: (gst_play_get_sink_element):
25072         * gst/videofilter/gstvideofilter.c:
25073         (gst_videofilter_set_output_size):
25074         Remove all usage of gst_pad_get_caps(), and replace it with
25075         gst_pad_get_allowed_caps() or gst_pad_get_negotiated_cap().
25076
25077 2004-01-11  David Schleef  <ds@schleef.org>
25078
25079         * configure.ac:
25080         * ext/Makefile.am: Fixes to make ext/libcaca compile.
25081         * ext/divx/gstdivxdec.c:
25082         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_sink_link),
25083         (gst_gdk_pixbuf_init), (gst_gdk_pixbuf_chain): Make gdkpixbufdec
25084         handle images that span multiple buffers.  Now work with both
25085         filesrc ! gdkpixbufdec and qtdemux ! gdkpixbufdec.
25086         * ext/gdk_pixbuf/gstgdkpixbuf.h:
25087         * ext/libcaca/gstcacasink.h: Fixes needed due to recent
25088         video/video.h changes
25089         * ext/xvid/gstxvid.c: (gst_xvid_csp_to_caps): same
25090         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
25091         (gst_v4lmjpegsrc_buffer_free): Use buffer free function instead
25092         of GstData free function.
25093         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
25094         same.
25095
25096 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25097
25098         * sys/v4l2/gstv4l2element.c: (gst_v4l2element_class_init),
25099         (gst_v4l2element_dispose), (gst_v4l2element_set_property),
25100         (gst_v4l2element_get_property):
25101         * sys/v4l2/v4l2_calls.c: (gst_v4l2_set_defaults), (gst_v4l2_open):
25102           add norm, channel and frequency properties.
25103         * sys/v4l2/gstv4l2tuner.c:
25104           fixes for tuner interface changes
25105         * sys/v4l2/gstv4l2element.h:
25106         * sys/v4l2/gstv4l2src.c:
25107         * sys/v4l2/gstv4l2src.h:
25108         * sys/v4l2/v4l2src_calls.c:
25109         * sys/v4l2/v4l2src_calls.h:
25110           rework v4l2src to work with saa1734 cards and allow mmaped buffers.
25111
25112 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25113
25114         * gst-libs/gst/tuner/tuner.c: (gst_tuner_class_init),
25115         (gst_tuner_find_norm_by_name), (gst_v4l2_find_channel_by_name),
25116         (gst_tuner_channel_changed), (gst_tuner_norm_changed),
25117         (gst_tuner_frequency_changed), (gst_tuner_signal_changed):
25118         * gst-libs/gst/tuner/tuner.h:
25119           GObjects aren't const.
25120           Add find_by_name functions.
25121           Add checks to _changed functions.
25122         * sys/v4l/gstv4ltuner.c: (gst_v4l_tuner_get_channel),
25123         (gst_v4l_tuner_get_norm):
25124           Fixes for above.
25125
25126 2004-01-12  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25127
25128         * gst-libs/gst/video/video.h:
25129           Fix caps template names to be understandable.
25130           Prefix everything with GST_VIDEO.
25131         * ext/aalib/gstaasink.c:
25132         * ext/divx/gstdivxdec.c:
25133         * ext/divx/gstdivxenc.c:
25134         * ext/gdk_pixbuf/gstgdkpixbuf.c:
25135         * ext/hermes/gstcolorspace.c: (gst_colorspace_base_init):
25136         * ext/jpeg/gstjpegdec.c: (raw_caps_factory):
25137         * ext/jpeg/gstjpegenc.c: (raw_caps_factory):
25138         * ext/libcaca/gstcacasink.c:
25139         * ext/libpng/gstpngenc.c: (raw_caps_factory):
25140         * ext/snapshot/gstsnapshot.c:
25141         * ext/swfdec/gstswfdec.c:
25142         * ext/xvid/gstxviddec.c:
25143         * ext/xvid/gstxvidenc.c:
25144         * gst/chart/gstchart.c:
25145         * gst/deinterlace/gstdeinterlace.c:
25146         * gst/effectv/gsteffectv.c:
25147         * gst/flx/gstflxdec.c: (gst_flxdec_loop):
25148         * gst/goom/gstgoom.c:
25149         * gst/median/gstmedian.c:
25150         * gst/monoscope/gstmonoscope.c: (gst_monoscope_init),
25151         (gst_monoscope_srcconnect), (gst_monoscope_chain):
25152         * gst/overlay/gstoverlay.c:
25153         * gst/smooth/gstsmooth.c:
25154         * gst/smpte/gstsmpte.c:
25155         * gst/synaesthesia/gstsynaesthesia.c:
25156         * gst/videocrop/gstvideocrop.c:
25157         * gst/videodrop/gstvideodrop.c:
25158         * gst/y4m/gsty4mencode.c:
25159         * sys/qcam/gstqcamsrc.c:
25160         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps):
25161           Make them work with new video.h file.
25162         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25163         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
25164         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25165         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
25166           Make it work with new buffer allocation system.
25167
25168 2004-01-11  Julien MOUTTE  <julien@moutte.net>
25169
25170         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain): Fixing the
25171         pad_alloc_buffer implementation to use ->srcpad
25172         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain): Fixing the
25173         pad_alloc_buffer implementation to use ->srcpad
25174         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):  Fixing the
25175         pad_alloc_buffer implementation to use ->srcpad
25176         * sys/ximage/ximagesink.c: (gst_ximagesink_ximage_new),
25177         (gst_ximagesink_chain), (gst_ximagesink_buffer_free),
25178         (gst_ximagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
25179         a reference to everything we need.
25180         * sys/ximage/ximagesink.h: adding a reference to the sink in the image.
25181         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xvimage_new),
25182         (gst_xvimagesink_chain), (gst_xvimagesink_buffer_free),
25183         (gst_xvimagesink_buffer_alloc): Now only use GST_BUFFER_PRIVATE to keep
25184         a reference to everything we need.
25185         * sys/xvimage/xvimagesink.h: adding a reference to the sink in the image
25186
25187 2004-01-11  David Schleef  <ds@schleef.org>
25188
25189         * ext/divx/gstdivxenc.c: remove bogus gst_caps_is_fixed() test
25190         * gst/debug/efence.c: (gst_efence_chain), (gst_fenced_buffer_new),
25191         (gst_fenced_buffer_default_copy): Fix for rename of buffer private
25192         structure members.
25193         * gst/effectv/gstwarp.c: (gst_warptv_setup): Don't reset the time
25194         value during a resize/renegotiation.
25195         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain): use
25196         gst_pad_alloc_buffer();
25197         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
25198         (gst_v4lmjpegsrc_buffer_free): Fix for rename of buffer private
25199         structure members.
25200         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_get), (gst_v4lsrc_buffer_free):
25201         Fix for rename of buffer private structure members.
25202         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25203         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc):
25204         Fix for rename of buffer private structure members.
25205         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25206         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc):
25207         Fix for rename of buffer private structure members.
25208
25209 2004-01-11  Arwed v. Merkatz <v.merkatz@gmx.net>
25210
25211         reviewed by: David Schleef <ds@schleef.org>
25212
25213         * gst/videofilter/Makefile.am:
25214         * gst/videofilter/gstgamma.c: Gamma correction filter.  Modified
25215         from the patch by ds to fit in with recent make_filter changes.
25216
25217 2004-01-11  Julien MOUTTE  <julien@moutte.net>
25218
25219         * configure.ac: Adding examples/switch/Makefile
25220         * examples/Makefile.am: Adding examples/switch
25221         * examples/switch/Makefile.am: Adding switcher example.
25222         * examples/switch/switcher.c: (got_eos), (idle_iterate),
25223         (switch_timer), (main): Adding an example demonstrating switch usage
25224         with 2 videotestsrc showing different patterns.
25225         * gst/switch/gstswitch.c: (gst_switch_request_new_pad),
25226         (gst_switch_init): Fixing switch with the new caps system.
25227
25228 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25229
25230         * gst-libs/gst/video/video.h:
25231           Fix 32bit caps. Issue remaining: The macro names are chosen poorly.
25232           They should probably be like
25233           GST_VIDEO_PAD_TEMPLATE_CAPS_{RGB,BGR,RGBx,BGRx}.
25234
25235 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25236
25237         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25238         (qtdemux_parse_trak):
25239           fix audio chunk size/timestamp calculation
25240
25241 2004-01-11  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25242
25243         * ext/ffmpeg/gstffmpegcodecmap.c: (gst_ffmpeg_codecid_to_caps):
25244           fix SVQ3 caps
25245
25246 2004-01-11  Steve Baker  <steve@stevebaker.org>
25247
25248         * gst/effectv/gstaging.c: (gst_agingtv_get_type),
25249         (gst_agingtv_base_init), (gst_agingtv_class_init),
25250         (gst_agingtv_init), (gst_agingtv_setup), (gst_agingtv_rgb32),
25251         (gst_agingtv_set_property), (gst_agingtv_get_property):
25252         Port agingTV to videofilter
25253
25254 2004-01-09  Julien MOUTTE <julien@moutte.net>
25255
25256         * ext/hermes/gstcolorspace.c: (gst_colorspace_chain):
25257         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
25258
25259 2004-01-09  Julien MOUTTE <julien@moutte.net>
25260
25261         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_chain):
25262         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
25263         * gst-libs/gst/xoverlay/xoverlay.c:
25264         (gst_x_overlay_got_desired_size): Updating doc for the xid being 0.
25265         * gst/videoscale/gstvideoscale.c: (gst_videoscale_chain):
25266         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
25267         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
25268         Implementing gst_pad_alloc_buffer to use optimized buffer allocation.
25269         * sys/ximage/ximagesink.c: (gst_ximagesink_chain),
25270         (gst_ximagesink_buffer_free), (gst_ximagesink_buffer_alloc),
25271         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_init): Implementing
25272         the bufferalloc_function to replace bufferpools, fixing the XOverlay
25273         interface implementation to handle xid being 0 and fix some bugs
25274         triggered by Benjamin's testcase.
25275         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_chain),
25276         (gst_xvimagesink_buffer_free), (gst_xvimagesink_buffer_alloc),
25277         (gst_xvimagesink_set_xwindow_id), (gst_xvimagesink_init): Implementing
25278         the bufferalloc_function to replace bufferpools, fixing the XOverlay
25279         interface implementation to handle xid being 0 and fix some bugs
25280         triggered by Benjamin's testcase.
25281
25282 2004-01-09  David Schleef  <ds@schleef.org>
25283
25284         * ext/librfb/gstrfbsrc.c:  Hacking.  Added actual decoding and
25285         mouse pointer events.  It works.
25286
25287 2004-01-09  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25288
25289         * ext/divx/gstdivxenc.c: (gst_divxenc_init):
25290           Use explicit caps - fix capsnego.
25291         * ext/xvid/gstxviddec.c:
25292         * ext/xvid/gstxvidenc.c:
25293           Remove macro-inside-macro which caused compile errors.
25294         * gst-libs/gst/riff/riff-read.c: (gst_riff_read_header):
25295           Error out if it's not a RIFF file. Else we error out without
25296           gst_element_error() which is not good...
25297
25298 2004-01-08  David Schleef  <ds@schleef.org>
25299
25300         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect):
25301         Fix pad_link function to handle formats that ffmpeg returns
25302         as multiple caps structures.
25303         * gst/videofilter/gstvideofilter.c: (gst_videofilter_chain):
25304         Only complain if source buffer is _smaller_ than expected.
25305         * gst/videoscale/gstvideoscale.c: (gst_videoscale_init),
25306         (gst_videoscale_handle_src_event): Resize navigation events
25307         when passing them upstream.
25308         * gst/videotestsrc/gstvideotestsrc.c:
25309         * gst/videotestsrc/gstvideotestsrc.h:
25310         * gst/videotestsrc/videotestsrc.c:
25311         * gst/videotestsrc/videotestsrc.h:
25312         Rewrite many of the buffer painting functions to handle odd
25313         sizes (for many formats, size%4!=0 or size%8!=0).  Most have
25314         been verified to work with my video card.
25315         * testsuite/gst-lint:  Add check for elements calling
25316         gst_pad_get_caps() instead of gst_pad_get_allowed_caps().
25317
25318 2004-01-08  David Schleef  <ds@schleef.org>
25319
25320         * gst/videodrop/gstvideodrop.c: (gst_videodrop_getcaps),
25321         (gst_videodrop_link), (gst_videodrop_init): Fix negotiation.
25322
25323 2004-01-08  Julien MOUTTE  <julien@moutte.net>
25324
25325         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents): A
25326         configure event is not emiting the desired size signal. That fixes
25327         aspect ratio issues with gst-player.
25328
25329 2004-01-08  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25330
25331         * gst/median/gstmedian.c: (gst_median_link), (gst_median_init):
25332           Fix capsnego.
25333
25334 2004-01-08  Julien MOUTTE  <julien@moutte.net>
25335
25336         * ext/sdl/sdlvideosink.c: (gst_sdlvideosink_create): Using XOverlay
25337         public method to fire size signal.
25338
25339 2004-01-07  Julien MOUTTE  <julien@moutte.net>
25340
25341         * examples/gstplay/Makefile.am: Adding the interface library.
25342         * gst-libs/gst/play/Makefile.am: Adding the interface library.
25343         * gst-libs/gst/play/gstplay.c: (gst_play_set_video_sink): Connecting to         the XOverlay size signal instead of GstVideoSink.
25344         * gst-libs/gst/play/gstplay.h: Including the XOverlay interface to check
25345         GST_IS_X_OVERLAY before signal connect.
25346         * gst-libs/gst/video/gstvideosink.c: (gst_videosink_class_init):
25347         Removing the have_video_size signal.
25348         * gst-libs/gst/video/gstvideosink.h: Removing the have_video_size signal
25349         and associated public method.
25350         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
25351         (gst_ximagesink_sinkconnect): Using XOverlay public method to fire size
25352         signal.
25353         * sys/xvideo/xvideosink.c: (gst_xvideosink_sinkconnect),
25354         (gst_xvideosink_xwindow_new): Using XOverlay public method to fire size
25355         signal.
25356         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_sinkconnect):
25357         Using XOverlay public method to fire size signal.
25358
25359 2004-01-07  David Schleef  <ds@schleef.org>
25360
25361         * gst/videofilter/Makefile.am:
25362         * gst/videofilter/gstvideotemplate.c:
25363         * gst/videofilter/make_filter:
25364         Create gstvideoexample.c in a srcdir!=builddir friendly way.
25365         Convert make_filter to /bin/sh script.
25366
25367 2004-01-07  Thomas Vander Stichele  <thomas at apestaart dot org>
25368
25369         * gst/modplug/gstmodplug.cc: fix element description
25370
25371 2004-01-07  Julien MOUTTE  <julien@moutte.net>
25372
25373         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
25374         (got_video_size): Adding some new lines in g_print calls.
25375         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
25376         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_xwindow_resize),
25377         (gst_ximagesink_handle_xevents), (gst_ximagesink_fixate),
25378         (gst_ximagesink_sinkconnect), (gst_ximagesink_change_state),
25379         (gst_ximagesink_chain), (gst_ximagesink_buffer_new),
25380         (gst_ximagesink_set_xwindow_id), (gst_ximagesink_get_desired_size):
25381         Complete code review, reverting some stuff i disagree with, adding
25382         some fixes : time synchronization on invalid timestamps, renegotiation
25383         of private window.
25384         * sys/ximage/ximagesink.h:
25385         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_xwindow_destroy),
25386         (gst_xvimagesink_xwindow_resize), (gst_xvimagesink_handle_xevents),
25387         (gst_xvimagesink_get_xv_support), (gst_xvimagesink_xcontext_get),
25388         (gst_xvimagesink_fixate), (gst_xvimagesink_sinkconnect),
25389         (gst_xvimagesink_change_state), (gst_xvimagesink_chain),
25390         (gst_xvimagesink_buffer_new),
25391         (gst_xvimagesink_navigation_send_event),
25392         (gst_xvimagesink_set_xwindow_id),
25393         (gst_xvimagesink_get_desired_size),
25394         (gst_xvimagesink_xoverlay_init): Complete code review, reverting some
25395         stuff i disagree with, adding some fixes : Renegotiation of private
25396         window, implementing get_desired_size.
25397
25398 2004-01-07  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25399
25400         * ext/audiofile/gstafsink.c: (gst_afsink_init), (gst_afsink_chain),
25401         (gst_afsink_handle_event):
25402         * ext/jpeg/gstjpegenc.c: (gst_jpegenc_init):
25403         * gst/avi/gstavimux.c: (gst_avimux_request_new_pad):
25404         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_init):
25405         * sys/dxr3/dxr3spusink.c: (dxr3spusink_init):
25406         * sys/dxr3/dxr3videosink.c: (dxr3videosink_init):
25407           Fix for instantiate-test (see core). Also remove dead code from
25408           jpegenc (which still needs fixing, but that's lower on my TODO
25409           list...).
25410         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_getcaps):
25411           Never return NULL as caps.
25412
25413 2004-01-07  David Schleef  <ds@schleef.org>
25414
25415         * configure.ac:
25416         * ext/Makefile.am:
25417         * ext/librfb/Makefile.am:
25418         * ext/librfb/gstrfbsrc.c:
25419         New source plugin based on librfb-0.1.  RFB (remote framebuffer)
25420         is the protocol used by VNC.
25421
25422 2004-01-07  David Schleef  <ds@schleef.org>
25423
25424         * gst/videofilter/gstvideotemplate.c:
25425         * gst/videofilter/gstvideotemplate.h:
25426         * gst/videofilter/make_filter:
25427         Merge videotemplate header into source file.
25428         * gst/effectv/Makefile.am:
25429         * gst/effectv/gsteffectv.c: (plugin_init):
25430         * gst/effectv/gstwarp.c:
25431         Make warpTV a subclass of videofilter.
25432
25433 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25434
25435         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
25436           Add guard against invalid utf-8 conversions in mad. Just in case.
25437
25438 2004-01-07  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25439
25440         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
25441           Fix for bug shown by poisoning
25442
25443 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25444
25445         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_get),
25446         (gst_v4lmjpegsrc_buffer_free):
25447         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_palette_to_caps),
25448         (gst_v4lsrc_srcconnect), (gst_v4lsrc_getcaps), (gst_v4lsrc_get),
25449         (gst_v4lsrc_buffer_free):
25450           Fix for removed bufferpools.
25451
25452 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
25453
25454         * ext/dv/gstdvdec.c: (gst_dvdec_loop):
25455         Fix caps negotiation.
25456
25457         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_class_init),
25458         (dvdnavsrc_update_buttoninfo), (dvdnavsrc_get),
25459         (dvdnavsrc_get_event_mask), (dvdnav_handle_navigation_event),
25460         (dvdnavsrc_event):
25461         * ext/mpeg2dec/gstmpeg2dec.c:
25462         * gst-libs/gst/navigation/navigation.c:
25463         (gst_navigation_send_key_event), (gst_navigation_send_mouse_event):
25464         * gst-libs/gst/navigation/navigation.h:
25465         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_handle_src_event):
25466         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents):
25467         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_handle_xevents):
25468         Super-simple first version of mouse and keyboard events. Clicking
25469         on a DVD menu now works, although it may not take you where you
25470         expected.
25471
25472         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
25473         * gst/videotestsrc/gstvideotestsrc.c:
25474         (gst_videotestsrc_src_fixate):
25475         These fixate functions were broken - they never actually
25476         fixated :)
25477
25478 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25479
25480         * ext/shout/gstshout.c: (gst_icecastsend_base_init),
25481         (gst_icecastsend_init):
25482           fix for new caps system.
25483         * gst-libs/gst/mixer/mixertrack.h:
25484         * sys/oss/gstossmixer.c: (gst_ossmixer_build_list):
25485           Add 'master track' flag (for tools like ACME that only want to
25486           change the main volume).
25487
25488 2004-01-07  Jan Schmidt  <thaytan@mad.scientist.com>
25489
25490         * ext/xvid/gstxvid.c: (gst_xvid_structure_to_csp),
25491         (gst_xvid_csp_to_caps):
25492         * ext/xvid/gstxviddec.c: (gst_xviddec_src_getcaps):
25493         * ext/xvid/gstxvidenc.c:
25494         ifdef out ARGB type when it isn't available
25495         in xvidcore 1.0.0beta2
25496
25497 2004-01-06  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25498
25499         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_loop):
25500           When we have received a new SCR right in the first buffer after
25501           a seek (so in the same cycle that handles the discont), we should
25502           handle the buffer instead of unreffing it, else we lose data.
25503
25504 2004-01-06  Iain <iain@prettypeople.org>
25505
25506         * gst/intfloat/gstint2float.c (gst_int2float_link): Set the
25507           buffer-frames caps too.
25508
25509         * gst/oneton/gstoneton.c (gst_oneton_sink_connect): Only create the new
25510           caps that we need, don't destroy them all and rebuild them. And when
25511           creating src pads, use the src pad template rather than the sink...
25512
25513 2004-01-05  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25514
25515         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead):
25516           Add pad to element *after* setting functions such as event handler.
25517           Without this, the scheduler (opt) will link pads, set the event
25518           handler from the default event function (dispatcher in gstpad.c)
25519           and *after* that, we will set our own event function, which will
25520           thus never be used (and thus mpegdemux doesn't handle events).
25521
25522 2004-01-04  David Schleef  <ds@schleef.org>
25523
25524         Fix the fixate functions to handle new prototype:
25525         * gst/sine/gstsinesrc.c: (gst_sinesrc_src_fixate):
25526         * gst/videotestsrc/gstvideotestsrc.c:
25527         (gst_videotestsrc_src_fixate):
25528         * sys/oss/gstosssink.c: (gst_osssink_sink_fixate):
25529         * sys/ximage/ximagesink.c: (gst_ximagesink_fixate):
25530         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate):
25531
25532 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25533
25534         * sys/ximage/ximagesink.h:
25535         * sys/ximage/ximagesink.c: (gst_ximagesink_xwindow_new),
25536         (gst_ximagesink_xwindow_destroy), (gst_ximagesink_sinkconnect),
25537         (gst_ximagesink_change_state), (gst_ximagesink_set_xwindow_id),
25538         (gst_ximagesink_xoverlay_init):
25539           assorted fixes to make (re)embedding work
25540         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect),
25541         (gst_ximagesink_get_desired_size):
25542           implement desired size additions to XOverlay
25543
25544 2004-01-04  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25545
25546         * gst-libs/gst/xoverlay/xoverlay.c: (gst_x_overlay_base_init),
25547         (gst_x_overlay_got_xwindow_id), (gst_x_overlay_get_desired_size),
25548         (gst_x_overlay_got_desired_size):
25549         * gst-libs/gst/xoverlay/xoverlay.h:
25550           Add optional "desired size" signal and querying.
25551
25552 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25553
25554         * gst/matroska/matroska-demux.c:
25555         (gst_matroska_demux_parse_blockgroup):
25556           Fix EBML-laced block parsing. Diffs are relative to previous
25557           lace, not the first lace. Thanks to Mosu from the Matroska
25558           team for detecting this.
25559         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
25560         (gst_wavparse_parse_fmt), (gst_wavparse_getcaps),
25561         (gst_wavparse_handle_sink_event), (gst_wavparse_loop),
25562         (gst_wavparse_change_state):
25563         * gst/wavparse/gstwavparse.h:
25564           Quickfix for capsnego.
25565
25566 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25567
25568         * gst/wavenc/gstwavenc.c: (set_property), (gst_wavenc_init):
25569           Fix indenting, fix pad creation.
25570
25571 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25572
25573         * ext/xvid/gstxviddec.c: (gst_xviddec_init),
25574         (gst_xviddec_src_getcaps), (gst_xviddec_src_link),
25575         (gst_xviddec_sink_link):
25576           Implement src_getcaps() so proper size caps is negotiated.
25577
25578 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25579
25580         * ext/flac/gstflacdec.c: (gst_flacdec_loop):
25581           Finish flac decoder on EOS. See #116178.
25582
25583 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25584
25585         * gst/matroska/matroska-demux.c: (gst_matroska_demux_src_getcaps),
25586         (gst_matroska_demux_add_stream):
25587         * gst/matroska/matroska-ids.h:
25588           Add getcaps() function to fix capsnego...
25589
25590 2004-01-04  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25591
25592         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
25593         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes):
25594         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
25595           Fix more integer overflows. Again, see #126967.
25596
25597 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25598
25599         * ext/mpeg2dec/gstmpeg2dec.c:
25600           Add support for mpeg2dec-0.4.0 (released two weeks ago). See
25601           #130416.
25602
25603 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25604
25605         * configure.ac:
25606         * ext/xvid/gstxvid.c: (gst_xvid_init), (gst_xvid_error),
25607         (gst_xvid_structure_to_csp), (gst_xvid_csp_to_caps):
25608         * ext/xvid/gstxvid.h:
25609         * ext/xvid/gstxviddec.c: (gst_xviddec_class_init),
25610         (gst_xviddec_init), (gst_xviddec_setup), (gst_xviddec_chain),
25611         (gst_xviddec_src_link), (gst_xviddec_sink_link),
25612         (gst_xviddec_change_state):
25613         * ext/xvid/gstxviddec.h:
25614         * ext/xvid/gstxvidenc.c: (gst_xvidenc_profile_get_type),
25615         (gst_xvidenc_base_init), (gst_xvidenc_class_init),
25616         (gst_xvidenc_init), (gst_xvidenc_setup), (gst_xvidenc_chain),
25617         (gst_xvidenc_link), (gst_xvidenc_set_property),
25618         (gst_xvidenc_get_property), (gst_xvidenc_change_state):
25619         * ext/xvid/gstxvidenc.h:
25620           Update xvid plugin to latest xvid (1.0.0-beta3) API.
25621
25622 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25623
25624         * gst/rtp/rtp-packet.c:
25625           Add sys/types.h include, since OS X doesn't define in_addr_t
25626           in netinet/in.h, like it does on Linux (see #129600).
25627
25628 2004-01-03  Thomas Canty <tommydal@optushome.com.au>
25629
25630         reviewed by: Ronald Bultje  <rbultje@ronald.bitfreak.net>
25631
25632         * ext/alsa/gstalsamixer.c: (gst_alsa_mixer_dispose):
25633           Correct logic of dispose function (see #129306).
25634
25635 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25636
25637         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
25638         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_class_init),
25639         (gst_mpeg_parse_init):
25640         * gst/mpegstream/gstmpegparse.h:
25641           Remove clock (which was never provided, i.e. dead code), and
25642           also fix integer overflows at high PTS values (see #126967).
25643
25644 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25645
25646         * ext/flac/gstflacdec.c:
25647         * ext/libpng/gstpngenc.h:
25648         * ext/mikmod/gstmikmod.h:
25649           OS X fixes (see #126628).
25650
25651 2004-01-02  David Schleef  <ds@schleef.org>
25652
25653         * ext/alsa/gstalsasrc.c: (gst_alsa_src_pad_factory),
25654         (gst_alsa_src_base_init): Remove bogus "src" request pad.
25655         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_base_init),
25656         (gst_mpeg_parse_class_init): Move pad template registration
25657         to class_init, since the derived class (mpegdemux) doesn't
25658         want them.
25659
25660 2004-01-03  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25661
25662         * sys/ximage/Makefile.am:
25663         * sys/xvideo/Makefile.am:
25664         * sys/xvimage/Makefile.am:
25665           Move interface libs from LDFLAGS to LIBADD, fix relocation errors
25666           after installation (see #127664).
25667
25668 2004-01-02  David Schleef  <ds@schleef.org>
25669
25670         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_init),
25671         (gst_ffmpegenc_connect):  Negotiation fixes.
25672         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
25673         Remove inappropriate gst_caps_free().
25674         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
25675         Reenable Ronald's internal resize code, since the core handles
25676         it correctly now.
25677
25678 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25679
25680         * sys/v4l/gstv4lmjpegsink.c: (gst_v4lmjpegsink_init):
25681         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init):
25682         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_base_init), (gst_v4lsrc_init):
25683           Fix pad template stuff.
25684
25685 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25686
25687         * gst/matroska/ebml-read.c: (gst_ebml_read_sint):
25688         * gst/matroska/ebml-write.c: (gst_ebml_write_sint):
25689           fix signed integer reading/writing.
25690
25691 2004-01-02  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25692
25693         * ext/alsa/README:
25694           Remove outdated document
25695
25696 2004-01-03  Jan Schmidt  <thaytan@mad.scientist.com>
25697
25698         * gst/cutter/gstcutter.c: (gst_cutter_init):
25699           src pad was being created twice - oops.
25700
25701 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25702
25703         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
25704           Comment out internal resize. It doesn't handle the resulting
25705           XEvent internally, does another try_set_caps() which leads to
25706           a really nice loop.
25707           Real fix will come when Julien and Dave are awake. ;).
25708
25709 2004-01-02  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25710
25711         * ext/mpeg2enc/gstmpeg2enc.cc:
25712           fix const/nonconst compile issue.
25713
25714 2004-01-02  David Schleef  <ds@schleef.org>
25715
25716         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_fixate),
25717         (gst_xvimagesink_sinkconnect), (gst_xvimagesink_init):
25718         Add fixate function and a check for bad formats.
25719
25720 2004-01-01  David Schleef  <ds@schleef.org>
25721
25722         Negotiation fixes:
25723         * gst-libs/gst/audio/gstaudiofilter.c: (gst_audiofilter_link),
25724         (gst_audiofilter_init):
25725         * gst/debug/efence.c: (gst_efence_init):
25726         * gst/deinterlace/gstdeinterlace.c: (gst_deinterlace_link),
25727         (gst_deinterlace_init):
25728         * gst/volume/gstvolume.c: (volume_connect):
25729
25730 2004-01-01  David Schleef  <ds@schleef.org>
25731
25732         Convert elements to use gst_pad_use_explicit_caps() where
25733         appropriate:
25734         * ext/a52dec/gsta52dec.c: (gst_a52dec_init), (gst_a52dec_reneg):
25735         * ext/audiofile/gstafparse.c: (gst_afparse_init),
25736         (gst_afparse_open_file):
25737         * ext/audiofile/gstafsrc.c: (gst_afsrc_init),
25738         (gst_afsrc_open_file):
25739         * ext/esd/esdmon.c: (gst_esdmon_init), (gst_esdmon_get):
25740         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_init),
25741         (gst_ffmpegdec_chain):
25742         * ext/ffmpeg/gstffmpegdemux.c: (gst_ffmpegdemux_loop):
25743         * ext/flac/gstflacdec.c: (gst_flacdec_init), (gst_flacdec_write):
25744         * ext/gdk_pixbuf/gstgdkpixbuf.c: (gst_gdk_pixbuf_init),
25745         (gst_gdk_pixbuf_chain):
25746         * ext/jpeg/gstjpegdec.c: (gst_jpegdec_init), (gst_jpegdec_link),
25747         (gst_jpegdec_chain):
25748         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
25749         * ext/mikmod/gstmikmod.c: (gst_mikmod_init),
25750         (gst_mikmod_negotiate):
25751         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
25752         (gst_mpeg2dec_negotiate_format):
25753         * ext/mpeg2enc/gstmpeg2enc.cc:
25754         * ext/ogg/gstoggdemux.c: (gst_ogg_pad_push):
25755         * ext/speex/gstspeexdec.c: (gst_speexdec_init),
25756         (gst_speexdec_sinkconnect):
25757         * ext/swfdec/gstswfdec.c: (gst_swfdec_loop), (gst_swfdec_init):
25758         * ext/vorbis/vorbisfile.c: (gst_vorbisfile_init),
25759         (gst_vorbisfile_new_link):
25760         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_init),
25761         (gst_ac3parse_chain):
25762         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream),
25763         (gst_asf_demux_setup_pad):
25764         * gst/auparse/gstauparse.c: (gst_auparse_init),
25765         (gst_auparse_chain):
25766         * gst/id3/gstid3types.c: (gst_id3types_loop):
25767         * gst/matroska/matroska-demux.c: (gst_matroska_demux_add_stream):
25768         * gst/mpeg1videoparse/gstmp1videoparse.c: (gst_mp1videoparse_init),
25769         (mp1videoparse_parse_seq):
25770         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
25771         (bpf_from_header):
25772         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_syshead),
25773         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_lpcm_set_caps):
25774         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
25775         (gst_mpeg_parse_send_data):
25776         * gst/qtdemux/qtdemux.c: (gst_qtdemux_loop_header),
25777         (gst_qtdemux_add_stream):
25778         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
25779         * gst/wavparse/gstwavparse.c: (gst_wavparse_init),
25780         (gst_wavparse_parse_fmt):
25781
25782 2004-01-01  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25783
25784         * configure.ac:
25785           Fix configure check for mpeg2enc. We need 1.6.1.93 instead of
25786           1.6.1.92, since the pkg-config file of 1.6.1.92 is borked and
25787           it therefore uses the wrong include paths. Too bad... Note
25788           that 1.6.1.93 is not release yet. ;).
25789           Also add a check for mplex, which is now using the lib'ified
25790           mplex from mjpegtools, too.
25791         * ext/ffmpeg/gstffmpegcodecmap.c:
25792           Add codec_tag for 3ivx/xvid. For xvid, this should fix playback
25793           issues. I don't think ffmpeg handles 3ivx correctly, so this
25794           probably won't work. But it won't hurt either.
25795         * ext/ffmpeg/gstffmpegdec.c: (gst_ffmpegdec_connect),
25796         (gst_ffmpegdec_chain):
25797         * ext/ffmpeg/gstffmpegenc.c: (gst_ffmpegenc_connect),
25798         (gst_ffmpegenc_chain_audio):
25799           Fix memleak in audio encoding. Close codec if open fails, this
25800           calls the cleanup routines so we can re-use the context.
25801         * ext/mpeg2enc/gstmpeg2enc.cc:
25802           Fix pad template names/types, fix memory issue with getcaps().
25803         * ext/mpeg2enc/gstmpeg2encoder.cc:
25804         * ext/mpeg2enc/gstmpeg2encoder.hh:
25805           Fix compile issue with new caps system (const thingy).
25806         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
25807         * ext/mpeg2enc/gstmpeg2encpicturereader.hh:
25808           We read a first frame right on initing, so that we have a caps
25809           when we init the output. This caps is cached in padprivate and
25810           read as first frame.
25811         * ext/mplex/Makefile.am:
25812         * ext/mplex/gstmplex.cc:
25813         * ext/mplex/gstmplex.h:
25814         * ext/mplex/gstmplex.hh:
25815         * ext/mplex/gstmplexibitstream.cc:
25816         * ext/mplex/gstmplexibitstream.hh:
25817         * ext/mplex/gstmplexjob.cc:
25818         * ext/mplex/gstmplexjob.hh:
25819         * ext/mplex/gstmplexoutputstream.cc:
25820         * ext/mplex/gstmplexoutputstream.hh:
25821           We wrap mjpegtools mplex. So I rewrote the plugin. The old plugin
25822           had issues, didn't do capsnego, supported only a subset of the
25823           mplex features and required a mplex fork in our local CVS. Plus
25824           that it worked agaist a very old mplex version. Rewriting was
25825           faster than updating it.
25826         * gst-libs/ext/Makefile.am:
25827         * gst-libs/ext/mplex/INSTRUCT:
25828         * gst-libs/ext/mplex/Makefile.am:
25829         * gst-libs/ext/mplex/README:
25830         * gst-libs/ext/mplex/TODO:
25831         * gst-libs/ext/mplex/ac3strm_in.cc:
25832         * gst-libs/ext/mplex/audiostrm.hh:
25833         * gst-libs/ext/mplex/audiostrm_out.cc:
25834         * gst-libs/ext/mplex/aunit.hh:
25835         * gst-libs/ext/mplex/bits.cc:
25836         * gst-libs/ext/mplex/bits.hh:
25837         * gst-libs/ext/mplex/buffer.cc:
25838         * gst-libs/ext/mplex/buffer.hh:
25839         * gst-libs/ext/mplex/fastintfns.h:
25840         * gst-libs/ext/mplex/format_codes.h:
25841         * gst-libs/ext/mplex/inputstrm.cc:
25842         * gst-libs/ext/mplex/inputstrm.hh:
25843         * gst-libs/ext/mplex/lpcmstrm_in.cc:
25844         * gst-libs/ext/mplex/mjpeg_logging.cc:
25845         * gst-libs/ext/mplex/mjpeg_logging.h:
25846         * gst-libs/ext/mplex/mjpeg_types.h:
25847         * gst-libs/ext/mplex/mpastrm_in.cc:
25848         * gst-libs/ext/mplex/mpegconsts.cc:
25849         * gst-libs/ext/mplex/mpegconsts.h:
25850         * gst-libs/ext/mplex/mplexconsts.hh:
25851         * gst-libs/ext/mplex/multplex.cc:
25852         * gst-libs/ext/mplex/outputstream.hh:
25853         * gst-libs/ext/mplex/padstrm.cc:
25854         * gst-libs/ext/mplex/padstrm.hh:
25855         * gst-libs/ext/mplex/stillsstream.cc:
25856         * gst-libs/ext/mplex/stillsstream.hh:
25857         * gst-libs/ext/mplex/systems.cc:
25858         * gst-libs/ext/mplex/systems.hh:
25859         * gst-libs/ext/mplex/vector.cc:
25860         * gst-libs/ext/mplex/vector.hh:
25861         * gst-libs/ext/mplex/videostrm.hh:
25862         * gst-libs/ext/mplex/videostrm_in.cc:
25863         * gst-libs/ext/mplex/videostrm_out.cc:
25864         * gst-libs/ext/mplex/yuv4mpeg.cc:
25865         * gst-libs/ext/mplex/yuv4mpeg.h:
25866         * gst-libs/ext/mplex/yuv4mpeg_intern.h:
25867         * gst-libs/ext/mplex/yuv4mpeg_ratio.cc:
25868           We don't fork mjpegtools' mplex in our CVS anymore.
25869         * gst/avi/gstavidemux.c: (gst_avi_demux_src_getcaps),
25870         (gst_avi_demux_add_stream):
25871         * gst/avi/gstavidemux.h:
25872           Add getcaps() function for proper caps nego. This makes some
25873           parts of AVI playback/reading work.
25874         * sys/ximage/ximagesink.c: (gst_ximagesink_sinkconnect):
25875           Resize window on new capsnego. This is probably wrong, but
25876           I'm still committing it because with current capsnego, the
25877           first successfull capsnego is auto-fixated, therefore rounded
25878           down to the lowest values in the caps. this results in a 16x16
25879           XWindow that is not reized when real capsnego finishes.
25880           Dave, I see more cases of this, do you know a proper solution?
25881         * tools/gst-launch-ext.in:
25882           Fix MPEG-4 AAC (Apple iPod/iTunes) file commandline.
25883
25884 2003-12-31  David Schleef  <ds@schleef.org>
25885
25886         * gst/tcp/gsttcpsrc.c: (gst_tcpsrc_get):
25887         * gst/udp/gstudpsrc.c: (gst_udpsrc_get):
25888           Change gst_pad_proxy_link() to gst_pad_try_set_caps()
25889
25890 2003-12-30  David Schleef  <ds@schleef.org>
25891
25892         * ext/ffmpeg/gstffmpegcolorspace.c:
25893         (gst_ffmpegcsp_caps_remove_format_info), (gst_ffmpegcsp_getcaps),
25894         (gst_ffmpegcsp_pad_link), (gst_ffmpegcsp_init),
25895         (gst_ffmpegcsp_chain): Negotiation fixes
25896         * ext/mad/gstmad.c: (gst_mad_chain): Negotiation fixes
25897         * gst/audioconvert/gstaudioconvert.c: (gst_audio_convert_chain),
25898         (gst_audio_convert_link), (gst_audio_convert_channels):
25899         * gst/audioscale/gstaudioscale.c: (gst_audioscale_getcaps),
25900         (gst_audioscale_link), (gst_audioscale_get_buffer),
25901         (gst_audioscale_chain): Negotiation fixes
25902         * gst/audioscale/gstaudioscale.h:
25903         * gst/videofilter/gstvideofilter.c:
25904         (gst_videofilter_format_get_structure), (gst_videofilter_getcaps),
25905         (gst_videofilter_link), (gst_videofilter_init),
25906         (gst_videofilter_set_output_size), (gst_videofilter_setup),
25907         (gst_videofilter_find_format_by_structure):
25908         * gst/videofilter/gstvideofilter.h: Negotiation fixes
25909         * gst/videoscale/gstvideoscale.c: (gst_videoscale_getcaps),
25910         (gst_videoscale_link):
25911         * gst/videoscale/videoscale.c: (videoscale_get_structure),
25912         (videoscale_find_by_structure), (gst_videoscale_setup):
25913         * gst/videoscale/videoscale.h: Negotiation fixes
25914         * sys/ximage/ximagesink.c: (gst_ximagesink_handle_xevents),
25915         (gst_ximagesink_fixate), (gst_ximagesink_init): Add a fixate
25916         function, restrict resizing to a multiple of 4 (hack until
25917         everyone supports odd sizes correctly).
25918
25919 2003-12-29  Colin Walters  <walters@verbum.org>
25920
25921         * ext/esd/esdsink.c (gst_esdsink_link): Fix typo; get depth instead of
25922         signed.
25923
25924 2003-12-30  Jan Schmidt <thaytan@mad.scientist.com>
25925
25926         * ext/sndfile/gstsf.c: (gst_sf_loop):
25927           Fix warning about discarding const qualifier
25928
25929 2003-12-27  Jeremy Simon   <jesimon@libertysurf.fr>
25930
25931         * gst/cutter/gstcutter.c:
25932         * gst/videoscale/gstvideoscale.c:
25933         * gst/volenv/gstvolenv.c:
25934         * gst-libs/gst/audio/audio.c:
25935         * gst-libs/gst/video/video.c:
25936           Fix warnings
25937
25938 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25939
25940         * ext/alsa/gstalsa.c: (gst_alsa_open_audio):
25941           Don't send ALSA debugging to stderr.
25942         * ext/alsa/gstalsa.h:
25943           Use GST_WARNING instead of g_warning when ALSA functions fail.
25944
25945 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25946
25947         * sys/xvimage/xvimagesink.c: (gst_xvimagesink_get_xv_support):
25948           Free XVAdapterInfo correctly.
25949
25950 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25951
25952         * ext/mad/gstid3tag.c: (gst_id3_tag_add_src_pad),
25953         (gst_id3_tag_do_caps_nego), (gst_id3_tag_src_link):
25954           Make id3tag use correct caps nego.
25955
25956 2003-12-27  Amaury Jacquot <sxpert@esitcom.org>
25957
25958         * ext/ivorbis/vorbis.c:
25959         * ext/ivorbis/vorbisenc.h:
25960         * ext/ivorbis/vorbisfile.c:
25961           Modify so that it uses the new caps things
25962
25963 2003-12-27  Benjamin Otte  <in7y118@public.uni-hamburg.de>
25964
25965         * testsuite/spider/spider1.c: (main):
25966         * testsuite/spider/spider2.c: (main):
25967         * testsuite/spider/spider3.c: (main):
25968           Make tests compile again. They probably don't work.
25969
25970 2003-12-24  Colin Walters  <walters@verbum.org>
25971
25972         * sys/oss/gstosssink.c (gst_osssink_sink_fixate): Return NULL if
25973         we can't fixate the caps anymore.
25974
25975 2003-12-23  David Schleef  <ds@schleef.org>
25976
25977         * gst/volume/gstvolume.c: (volume_init): Proxy getcaps.
25978         * sys/oss/gstosssink.c: (gst_osssink_init),
25979         (gst_osssink_sink_fixate): Add fixate function.
25980
25981 2003-12-24  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25982
25983         * ext/ffmpeg/gstffmpegcodecmap.c:
25984         * ext/ffmpeg/gstffmpegcolorspace.c: (gst_ffmpegcsp_getcaps),
25985         (gst_ffmpegcsp_srcconnect_func), (gst_ffmpegcsp_sinkconnect),
25986         (gst_ffmpegcsp_srcconnect), (gst_ffmpegcsp_get_type),
25987         (gst_ffmpegcsp_base_init), (gst_ffmpegcsp_class_init),
25988         (gst_ffmpegcsp_init), (gst_ffmpegcsp_chain),
25989         (gst_ffmpegcsp_change_state), (gst_ffmpegcsp_set_property),
25990         (gst_ffmpegcsp_get_property), (gst_ffmpegcsp_register):
25991           fix typo in RGB masks, and move back to "old" colorspace
25992           capsnego code until whoever wrote this new crap has actually
25993           tested it so that it works.
25994           And yes, this works, keep it that way please.
25995
25996 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
25997
25998         * ext/divx/gstdivxdec.c: (gst_divxdec_base_init),
25999         (gst_divxdec_init), (gst_divxdec_negotiate):
26000         * ext/divx/gstdivxdec.h:
26001         * ext/divx/gstdivxenc.c: (gst_divxenc_base_init),
26002         (gst_divxenc_init):
26003         * ext/faac/gstfaac.c: (gst_faac_base_init), (gst_faac_init),
26004         (gst_faac_sinkconnect), (gst_faac_srcconnect):
26005         * ext/mpeg2enc/gstmpeg2enc.cc:
26006         * ext/mpeg2enc/gstmpeg2encoder.cc:
26007         * ext/mpeg2enc/gstmpeg2encpicturereader.cc:
26008         * sys/dxr3/dxr3audiosink.c: (dxr3audiosink_base_init),
26009         (dxr3audiosink_init), (dxr3audiosink_pcm_sinklink):
26010         * sys/dxr3/dxr3spusink.c: (dxr3spusink_base_init),
26011         (dxr3spusink_init):
26012         * sys/dxr3/dxr3videosink.c: (dxr3videosink_base_init),
26013         (dxr3videosink_init):
26014           Fix caps breakage after Dave's caps branch merge.
26015
26016 2003-12-23  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26017
26018         * sys/ximage/ximagesink.c: (gst_ximagesink_xcontext_get):
26019           Fix for 24bpp display.
26020
26021 2003-12-23  Colin Walters  <walters@verbum.org>
26022
26023         * ext/gnomevfs/gstgnomevfssink.c: Add ARG_HANDLE property that takes
26024         a GnomeVFSHandle directly.
26025
26026 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26027
26028         * gst/volume/Makefile.am:
26029         * gst/volume/gstvolume.c: (volume_connect), (volume_parse_caps),
26030         (volume_base_init), (volume_init):
26031           Reenable volume element and fix to work with new caps stuff.
26032           Rhythmbox needs this.
26033
26034 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26035
26036         * gst/qtdemux/qtdemux.c: (plugin_init):
26037           qtdemux requires bytestream
26038
26039 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26040
26041         * ext/alsa/gstalsa.c: (gst_alsa_get_caps), (gst_alsa_link):
26042           Fix remaining caps handling errors due to CAPS merge.
26043
26044 2003-12-22  Benjamin Otte  <in7y118@public.uni-hamburg.de>
26045
26046         * ext/faad/gstfaad.c: (gst_faad_base_init), (gst_faad_init),
26047         (gst_faad_sinkconnect), (gst_faad_srcgetcaps),
26048         (gst_faad_srcconnect):
26049           Port to new caps system.
26050
26051 2003-12-21  Julien MOUTTE  <julien@moutte.net>
26052
26053         * examples/gstplay/player.c: (got_time_tick), (got_stream_length),
26054         (got_video_size), (main): using g_print instead of g_message.
26055         * gst-libs/gst/play/gstplay.c: (gst_play_pipeline_setup): Fixing EOS
26056         signal which was not emitted because of "switch" element added to the
26057         bin but not connected. (Removing from the bin temporarily)
26058
26059 2003-12-21  Julien MOUTTE  <julien@moutte.net>
26060
26061         * configure.ac: X_DISPLAY_MISSING is set to 1 if AC_PATH_XTRA fails to
26062         find X development files. I don't understand the previous tests and
26063         they fail on my debian/ppc unstable. This one works.
26064         * examples/gstplay/player.c: (main): Set the pipeline to READY before
26065         exiting.
26066         * gst-libs/gst/play/gstplay.c: (gst_play_get_length_callback),
26067         (gst_play_set_video_sink), (gst_play_set_audio_sink),
26068         (gst_play_set_visualization): Add some safety checks in set_ methods
26069         and state_change. This was throwing some ugly CRITICAL messages when
26070         pipeline was getting disposed and casts were failing.
26071
26072 2003-12-21  Ronald Bultje  <rbultje@ronald.bitfreak.net>
26073
26074         * configure.ac:
26075           Improve mpeg2enc detection. This is for distributions that do
26076           ship mjpegtools, but without mpeg2enc. Also does object check
26077           for might there ever be ABI incompatibility.
26078         * ext/mpeg2enc/gstmpeg2enc.cc:
26079           Add Andrew as second maintainer (he's helping me), and also add
26080           an error if no caps was set. This happens if I pull before capsnego
26081           and that's something I should solve sometime else.
26082         * gst/matroska/matroska-demux.c:
26083         (gst_matroska_demux_parse_blockgroup):
26084           Fix time parsing.
26085         * gst/matroska/matroska-mux.c: (gst_matroska_mux_audio_pad_link),
26086         (gst_matroska_mux_track_header):
26087           Add caps to templates.
26088         * gst/mpegaudioparse/gstmpegaudioparse.c: (mp3_sink_factory):
26089           Add mpegversion=1 to prevent confusion with MPEG/AAC.
26090         * gst/mpegstream/gstmpegdemux.c:
26091           Remove layer since it causes warnings about unfixed caps.
26092         * gst/videotestsrc/gstvideotestsrc.c: (gst_videotestsrc_get):
26093           Fix obvious typo (we error out if caps were set, we should of
26094           course error out if *no* caps were set).
26095         * sys/oss/gstosselement.c: (gst_osselement_convert):
26096           Fix format conversion, we confused bits/bytes.
26097         * sys/oss/gstosselement.h:
26098           Improve documentation for 'bps'.
26099         * sys/v4l/TODO:
26100           Remove stuff about plugins that need removing - this was done
26101           ages ago.
26102         * sys/v4l/gstv4lmjpegsrc.c: (gst_v4lmjpegsrc_init),
26103         (gst_v4lmjpegsrc_src_convert), (gst_v4lmjpegsrc_src_query):
26104         * sys/v4l/gstv4lsrc.c: (gst_v4lsrc_init), (gst_v4lsrc_src_convert),
26105         (gst_v4lsrc_src_query):
26106         * sys/v4l2/gstv4l2src.c: (gst_v4l2src_init),
26107         (gst_v4l2src_src_convert), (gst_v4l2src_src_query):
26108           Add get_query_types(), get_formats() and query() functions.
26109
26110 2003-12-21  Thomas Vander Stichele  <thomas at apestaart dot org>
26111
26112         * ChangeLog: moved to gstreamer/docs/random/old/ChangeLog.gst-plugins
26113           * moved CVS to freedesktop.org