]> Gitweb @ Texas Instruments - Open Source Git Repositories - git.TI.com/gitweb - glsdk/gst-plugins-ugly0-10.git/blob - ChangeLog
gst/mpegaudioparse/gstmpegaudioparse.*: Implement parsing of Xing headers from the...
[glsdk/gst-plugins-ugly0-10.git] / ChangeLog
1 2007-05-18  Jan Schmidt  <thaytan@mad.scientist.com>
3         * gst/mpegaudioparse/gstmpegaudioparse.c:
4         (mp3_type_frame_length_from_header), (gst_mp3parse_reset),
5         (gst_mp3parse_emit_frame), (gst_mp3parse_handle_first_frame),
6         (gst_mp3parse_chain), (mp3parse_total_bytes),
7         (mp3parse_total_time):
8         * gst/mpegaudioparse/gstmpegaudioparse.h:
9         Implement parsing of Xing headers from the first frame of the stream,
10         and use it to report duration correctly where possible.
12 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
14         * gst/realmedia/rmdemux.c: (gst_rmdemux_descramble_cook_audio):
15           After descrambling, push the packets out as individual packets
16           instead of one big descrambled buffer. Makes cook audio decoding
17           work with the 'realaudiodec' decoder from gst-plugins-bad.
19 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
21         * gst/realmedia/rmdemux.c: (gst_rmdemux_init),
22         (gst_rmdemux_sink_event), (gst_rmdemux_perform_seek),
23         (gst_rmdemux_reset), (gst_rmdemux_chain), (gst_rmdemux_add_stream),
24         (gst_rmdemux_parse_packet):
25         * gst/realmedia/rmdemux.h:
26           Remember first timestamp encountered in stream and re-timestamp
27           stream to start from zero (fixes #397219); only send one newsegment
28           event, not two; when seeking, send newsegment events from the
29           streaming thread and not from the seeking thread.
31 2007-05-16  Tim-Philipp Müller  <tim at centricular dot net>
33         Based on patch by: Mark Nauwelaerts  <manauw skynet be>
35         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event):
36         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
37         (gst_mpeg_demux_process_event), (gst_mpeg_streams_reset_last_flow):
38         * gst/mpegstream/gstmpegdemux.h:
39           Reset last_flow values for the various streams after a flushing
40           seek, otherwise we might aggregate wrong flow returns afterwards
41           that will make upstream pause silently. This should fix seeking
42           in DVDs and also fix the Thoggen cropping dialog (#438610).
44 2007-05-07  Tim-Philipp Müller  <tim at centricular dot net>
46         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_reset),
47         (gst_asf_demux_chain_headers),
48         (gst_asf_demux_parse_data_object_start), (all_streams_prerolled),
49         (gst_asf_demux_have_mutually_exclusive_active_stream),
50         (gst_asf_demux_check_activate_streams),
51         (gst_asf_demux_find_stream_with_complete_payload),
52         (gst_asf_demux_push_complete_payloads), (gst_asf_demux_loop),
53         (gst_asf_demux_activate_ext_props_streams),
54         (gst_asf_demux_process_object):
55         * gst/asfdemux/gstasfdemux.h:
56           Activate streams (ie. add the pads to the element) depending on
57           whether we actually get data for those streams within the ASF
58           preroll value specified. Currently only done in pull-mode though
59           (this will fix problems with playbin hanging on mms streams once
60           we use this in push-mode as well).
62 2007-05-04  Tim-Philipp Müller  <tim at centricular dot net>
64         * gst/asfdemux/asfpacket.c: (gst_asf_payload_queue_for_stream):
65         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_reset),
66         (gst_asf_demux_init), (gst_asf_demux_push_complete_payloads),
67         (gst_asf_demux_process_file):
68         * gst/asfdemux/gstasfdemux.h:
69           Make all timestamps start from zero in pull-mode too; some small
70           clean-ups and FIXMEs here and there.
72 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
74         * gst/asfdemux/asfpacket.c: (gst_asf_demux_parse_payload),
75         (gst_asf_demux_parse_packet):
76           If packet size is specified within the packet and smaller than
77           the actual packet size, don't parse beyond the size specified in
78           the packet (this makes us parse some cases of packets with single
79           compressed payloads cleanly, see e.g stream from #431318). Also
80           add a sanity check when parsing compressed single payloads.
82 2007-05-01  Tim-Philipp Müller  <tim at centricular dot net>
84         * gst/asfdemux/asfpacket.c: (gst_asf_payload_queue_for_stream):
85         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_seek_index_lookup),
86         (gst_asf_demux_handle_seek_event),
87         (gst_asf_demux_push_complete_payloads):
88           Seeking improvements: honour the KEY_UNIT seek flag; after a seek, only
89           send data from the keyframe right before the new segment start to
90           make sure the decoder doesn't have to decode more than absolutely
91           necessary.
93 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
95         * gst/asfdemux/asfheaders.c:
96         * gst/asfdemux/asfheaders.h:
97         * gst/asfdemux/asfpacket.c:
98         (asf_payload_parse_replicated_data_extensions),
99         (gst_asf_demux_parse_payload):
100         * gst/asfdemux/asfpacket.h:
101         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_free_stream),
102         (gst_asf_demux_push_complete_payloads),
103         (gst_asf_demux_process_ext_stream_props):
104         * gst/asfdemux/gstasfdemux.h:
105           Implement payload extension system/extended replicated data parsing,
106           so we can extract payload durations if they're specified.
108 2007-04-30  Tim-Philipp Müller  <tim at centricular dot net>
110         * gst/asfdemux/asfheaders.h:
111         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_free_stream),
112         (gst_asf_demux_reset), (gst_asf_demux_parse_data_object_start),
113         (gst_asf_demux_loop), (gst_asf_demux_setup_pad),
114         (gst_asf_demux_add_audio_stream), (gst_asf_demux_activate_stream),
115         (gst_asf_demux_parse_stream_object),
116         (gst_asf_demux_process_ext_stream_props),
117         (gst_asf_demux_process_queued_extended_stream_objects),
118         (gst_asf_demux_activate_ext_props_streams),
119         (gst_asf_demux_process_object):
120         * gst/asfdemux/gstasfdemux.h:
121           Refactor stream parse/activation a bit (stream activation heuristics
122           are still the same though); some more clean-ups.
124 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
126         * win32/common/.cvsignore:
127           Ignore generated config.h file to make build bot happy.
129 2007-04-28  Tim-Philipp Müller  <tim at centricular dot net>
131         * gst/asfdemux/gstasf.c: (plugin_init):
132         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init):
133         * gst/asfdemux/gstasfdemux.h:
134           Init debug category before using it.
136 2007-04-27  Tim-Philipp Müller  <tim at centricular dot net>
138         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_pull_data),
139         (gst_asf_demux_push_complete_payloads), (gst_asf_demux_loop):
140           Fix silly bug when we can't pull as much data as we want; don't
141           forget to announce pending tags in the new packet parsing code.
143 2007-04-25  Tim-Philipp Müller  <tim at centricular dot net>
145         * configure.ac:
146         * win32/MANIFEST:
147           Generate a win32 config.h into win32/common and add to MANIFEST so
148           it gets disted (#393890). Looks like win32/common/config.h.in needs
149           some work though.
151 2007-04-22  Tim-Philipp Müller  <tim at centricular dot net>
153         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_get_type),
154         (gst_amrnbparse_class_init), (gst_amrnbparse_init),
155         (gst_amrnbparse_pull_header), (gst_amrnbparse_loop):
156           Fix pull mode operation some more: send newsegment event before
157           sending data; handle EOS and fatal flow returns a bit better; don't
158           leak buffers in some cases. Misc. minor cleanups. Fixes #431707.
160 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
162         * gst/asfdemux/Makefile.am:
163         * gst/asfdemux/asfpacket.c: (asf_packet_read_varlen_int),
164         (asf_packet_create_payload_buffer),
165         (asf_payload_find_previous_fragment),
166         (gst_asf_payload_queue_for_stream), (gst_asf_demux_parse_payload),
167         (gst_asf_demux_parse_packet):
168         * gst/asfdemux/asfpacket.h:
169         * gst/asfdemux/gstasfdemux.c:
170         (gst_asf_demux_reset_stream_state_after_discont),
171         (gst_asf_demux_push_complete_payloads), (gst_asf_demux_loop),
172         (gst_asf_demux_setup_pad), (gst_asf_demux_descramble_buffer),
173         (gst_asf_demux_process_chunk):
174         * gst/asfdemux/gstasfdemux.h:
175           New packet parsing code: should put halfway decent timestamps on
176           buffers, and might even set the appropriate keyframe/discont buffer
177           flags from time to time (and even if it doesn't, I'm at least able
178           to debug this code); only used in pull-mode so far. Still needs
179           some more work, like payload extensions parsing and proper flow
180           aggregation, and stream activation based on preroll. Stay tuned.
181           
182 2007-04-20  Tim-Philipp Müller  <tim at centricular dot net>
184         * gst/asfdemux/asfheaders.h:
185         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_free_stream),
186         (gst_asf_demux_seek_index_lookup),
187         (gst_asf_demux_handle_seek_event), (gst_asf_demux_get_stream),
188         (gst_asf_demux_setup_pad), (gst_asf_demux_add_video_stream),
189         (gst_asf_demux_process_ext_content_desc),
190         (gst_asf_demux_process_file), (gst_asf_demux_descramble_segment),
191         (gst_asf_demux_push_buffer), (gst_asf_demux_process_chunk),
192         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data):
193         * gst/asfdemux/gstasfdemux.h:
194           Some clean-ups and small fixes: rename asf_stream_context structure to
195           AsfStream; inline some three-line utility functions that are only used
196           once anyway and get rid of their associated helper structs; make debug
197           category global so that it is used by the debug statements in the other
198           file as well; simplify gst_asf_demux_get_stream(); fix accidental
199           implicit initialisation of stream->last_buffer_timestamp to 0, which
200           would lead to missing timestamps on the first buffer; put fourcc format
201           into video caps to make certain proprietary wmv decoders happy (for the
202           case of WMVA in particular); play_time is offset by preroll as well, so
203           fix overreporting of duration for some files.
205 2007-04-17  Tim-Philipp Müller  <tim at centricular dot net>
207         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event),
208         (gst_asf_demux_pull_indices):
209           Printf format fixes.
211 2007-04-16  Tim-Philipp Müller  <tim at centricular dot net>
213         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
214         (gst_mpeg_parse_send_event):
215           Post an error message if EOS wasn't handled by anything downstream.
216           This should fix playbin freezing/hanging with small VobSub subtitle
217           files (background: not-linked flow returns from downstream are
218           ignored for a while at the beginning, so if the file is small
219           upstream will never get a not-linked flow return even if nothing
220           is connected downstream). (#429960).
222 2007-04-16  Michael Smith  <msmith@fluendo.com>
224         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_init),
225         (gst_amrnbparse_sink_activate),
226         (gst_amrnbparse_sink_activate_pull):
227           Rewrite terminally broken sinkpad activation code.
228           Now actually supports pull-mode activation (didn't before), and push
229           mode activation doesn't leave the sinkpad flushing.
231 2007-04-12  Tim-Philipp Müller  <tim at centricular dot net>
233         * gst/asfdemux/asfheaders.c:
234         * gst/asfdemux/asfheaders.h:
235         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_free_stream),
236         (gst_asf_demux_reset), (gst_asf_demux_init),
237         (gst_asf_demux_activate), (gst_asf_demux_activate_push),
238         (gst_asf_demux_activate_pull), (gst_asf_demux_sink_event),
239         (gst_asf_demux_seek_index_lookup),
240         (gst_asf_demux_reset_stream_state_after_discont),
241         (gst_asf_demux_handle_seek_event),
242         (gst_asf_demux_handle_src_event), (gst_asf_demux_chain_headers),
243         (gst_asf_demux_chain), (gst_asf_demux_pull_data),
244         (gst_asf_demux_pull_indices),
245         (gst_asf_demux_parse_data_object_start),
246         (gst_asf_demux_pull_headers), (gst_asf_demux_loop),
247         (gst_asf_demux_setup_pad), (gst_asf_demux_process_file),
248         (gst_asf_demux_process_simple_index),
249         (gst_asf_demux_process_object),
250         (gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
251         (gst_asf_demux_handle_data), (gst_asf_demux_change_state):
252         * gst/asfdemux/gstasfdemux.h:
253           Make asfdemux work in pull mode where possible. If there's an index
254           at the end of the file, read it and use it for seeking purposes.
256 2007-04-12  Wim Taymans  <wim@fluendo.com>
258         * gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init),
259         (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_setcaps),
260         (gst_synaesthesia_chain), (gst_synaesthesia_change_state):
261         Some timestamp fixes.
263         * gst/synaesthesia/synaescope.c: (synaescope_coreGo):
264         Fix for 64-bit machines.
266 2007-04-12  Wim Taymans  <wim@fluendo.com>
268         Patch by: René Stadler <mail at renestadler dot de>
270         * gst/realmedia/rmdemux.c: (find_seek_offset_bytes),
271         (find_seek_offset_time), (gst_rmdemux_reset),
272         (gst_rmdemux_get_stream_by_id), (gst_rmdemux_send_event),
273         (gst_rmdemux_add_stream), (gst_rmdemux_combine_flows):
274         * gst/realmedia/rmdemux.h:
275         Make rmdemux handle any number of logical streams. Fixes #428698.
277 2007-04-05  Thomas Vander Stichele  <thomas at apestaart dot org>
279         submitted by: Mogens Jaeger <mogens@jaeger.tf>
281         * po/LINGUAS:
282         * po/da.po:
283           Added Danish translation.
285 2007-03-28  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
287         * po/.cvsignore:
288         Add pot.
290 2007-03-27  Julien MOUTTE  <julien@moutte.net>
292         * ext/mad/gstmad.c: (gst_mad_chain): Generate a perfect
293         stream and try to adapt to incoming timestamps lack of
294         precision up to half a frame. This allows generating
295         a perfect stream even with muxed formats like FLV where
296         the timestamps are stored in milliseconds.
298 2007-03-22  Tim-Philipp Müller  <tim at centricular dot net>
300         * gst/realmedia/rmdemux.c:
301           Remove unused zlib.h include. Fixes #421594.
303 2007-03-21  Jan Schmidt  <thaytan@mad.scientist.com>
305         * ext/lame/gstlame.c: (gst_lame_setup):
306         Disable the bitrate checking when the user has requested
307         Free Format mode, as all bitrates less than the maximum
308         are valid then.
310 2007-03-14  Thomas Vander Stichele  <thomas at apestaart dot org>
312         * po/hu.po:
313         * po/it.po:
314         * po/sv.po:
315           Update translations.
317 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
319         * ext/mad/gstmad.c: (gst_mad_convert_sink), (gst_mad_convert_src):
320         When handling seeks, don't convert -1 start or stop values to a bogus
321         byte position - pass them upstream as -1.
323 2007-03-12  Jan Schmidt  <thaytan@mad.scientist.com>
325         * gst/mpegaudioparse/gstmpegaudioparse.c:
326         (mp3_type_frame_length_from_header), (gst_mp3parse_reset),
327         (gst_mp3parse_init), (gst_mp3parse_sink_event),
328         (gst_mp3parse_emit_frame), (gst_mp3parse_chain),
329         (gst_mp3parse_change_state), (mp3parse_time_to_bytepos),
330         (mp3parse_bytepos_to_time), (mp3parse_total_bytes),
331         (mp3parse_total_time), (mp3parse_handle_seek),
332         (mp3parse_src_event), (mp3parse_src_query),
333         (mp3parse_get_query_types), (plugin_init):
334         * gst/mpegaudioparse/gstmpegaudioparse.h:
335         Implement seeking via average bitrate, and position+duration
336         querying in mp3parse. Later, it will support frame-accurate seeking by
337         building a seek table as it parses.
339         Add 'parsed=false' to the sink pad caps, and 'parsed=true' to the src
340         pad caps. Bump the priority to PRIMARY+1 so that it is autoplugged
341         before any extant MP3 decoder plugin. This allows us to remove framing
342         support from the decoders, if we want, and will provide them with
343         accurate seeking automatically once it is finished.
345         Fix the handling of MPEG-1 Layer 1 files.
347         Partially fix timestamping of packets arriving from a demuxer by
348         queueing the incoming timestamp until the next packet starts, rather
349         than applying it immediately to the next pushed buffer.
351 2007-03-10  Tim-Philipp Müller  <tim at centricular dot net>
353         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_header_ext):
354           Printf format fix.
356 2007-03-02  Tim-Philipp Müller  <tim at centricular dot net>
358         Patch by: Zaheer Abbas Merali  <zaheermerali at gmail com>
360         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_chain):
361           Never post a (fatal) error message on the bus on decoding errors. We
362           should only do this if we can't recover, but mpeg2dec can always
363           recover. This is needed for DVB streams, for example, where there
364           may be temporary glitches in the stream. Instead of an error
365           message, post a warning message on the bus for every N decoding
366           errors. Fixes #370020.
368 2007-02-28  Thomas Vander Stichele  <thomas at apestaart dot org>
370         * configure.ac:
371           Convert to new AG_GST style.
373 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
375         * ext/lame/gstlame.c: (gst_lame_class_init), (gst_lame_init),
376         (gst_lame_setup):
377         Display sensible defaults and limits for the 
378         vbr-min/max/mean properties. Fix the 'hard-limit' VBR min
379         property - it's supposed to be a boolean 0/1 value.
381 2007-02-28  Jan Schmidt  <thaytan@mad.scientist.com>
383         * ext/lame/gstlame.c:
384         Initialise the variables so gcc doesn't complain about possibly
385         uninitialised uses, even though they can't actually happen.
387 2007-02-28  Wim Taymans  <wim@fluendo.com>
389         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
390         (update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
391         (gst_dvdlpcmdec_chain_raw), (dvdlpcmdec_sink_event):
392         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
393         Implement all sample rates.
394         Implement sample permutation a little smarter avoiding a memcpy.
395         Fix timestamps, use segments, fix seeking.
397 2007-02-28  Wim Taymans  <wim@fluendo.com>
399         * docs/plugins/Makefile.am:
400         * docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
401         * docs/plugins/gst-plugins-ugly-plugins-sections.txt:
402         * docs/plugins/inspect/plugin-siddec.xml:
403         * ext/sidplay/gstsiddec.cc:
404         * ext/sidplay/gstsiddec.h:
405         Document siddec.
407 2007-02-21  Thomas Vander Stichele  <thomas at apestaart dot org>
409         * ext/lame/gstlame.c: (gst_lame_sink_setcaps),
410         (gst_lame_set_property), (gst_lame_setup):
411           Fix up bitrate checking macro.  Make it give us a
412           GST_ELEMENT_WARNING message so the application has a chance of
413           reporting this to the user.  Move the checking to _setup, so we
414           are sure it runs in the READY state, when we hope to have a pipeline
415           and a bus that is not flushing.
416           This fixes e.g. using 96 kbit/sec as a bitrate.
418 2007-02-15  Tim-Philipp Müller  <tim at centricular dot net>
420         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_file),
421         (gst_asf_demux_process_advanced_mutual_exclusion),
422         (gst_asf_demux_process_queued_extended_stream_objects),
423         (gst_asf_demux_process_object), (gst_asf_demux_change_state):
424         * gst/asfdemux/gstasfdemux.h:
425           Parse advanced mutual exclusion object and only add pads for
426           'hidden' streams (those in an extended stream header) that are
427           mutually exclusive with an already existing 'main stream' if
428           the broadcasting flag is not set. If the broadcasting flag is set,
429           assume that data for this stream isn't sent. (This should ideally be
430           solved better by making playbin more robust against this and/or by
431           making mmssrc send some information downstream about which streams
432           will be streamed). Fixes #353116.
434 2007-02-13  Jan Schmidt  <thaytan@mad.scientist.com>
436         * gst/synaesthesia/gstsynaesthesia.c:
437         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
438         (gst_synaesthesia_finalize), (gst_synaesthesia_chain):
439         * gst/synaesthesia/synaescope.c: (synaescope_coreGo),
440         (synaescope32), (synaescope_set_data), (synaesthesia_update),
441         (synaesthesia_init), (synaesthesia_new), (synaesthesia_close):
442         * gst/synaesthesia/synaescope.h:
443         Move all the mutable engine state into a structure so that 
444         multiple element instances can run without interfering.
446 2007-02-13  Stefan Kost  <ensonic@users.sf.net>
448         * configure.ac:
449         * docs/plugins/Makefile.am:
450           Add crossreferences to glib/gobject/gstream docs.
452 2007-02-12  Stefan Kost  <ensonic@users.sf.net>
454         * gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init),
455         (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps),
456         (gst_synaesthesia_src_setcaps), (gst_synaesthesia_chain),
457         (plugin_init):
458         * gst/synaesthesia/synaescope.c: (synaescope_coreGo),
459         (synaescope8):
460           More source cleanups and add FIXME comments.
462 2007-02-11  Sébastien Moutte  <sebastien@moutte.net>
464         * gst/realmedia/rmdemux.c:(gst_rmdemux_parse_indx_data):
465           Use gst_guint64_to_gdouble for conversions.
466         * gst/synaesthesia/synaescope.c:
467           Define M_PI and do not include <pthread.h> and
468           <sys/time.h> for G_OS_WIN32 
469         * win32/vs6/libgstrealmedia.dsp:
470         * win32/vs6/synaesthesia.dsp:
471           Update projects files.
472         * win32/common/config.h.in:
473           Add config.h.in for autogen of config.h
475 2007-02-11  Stefan Kost  <ensonic@users.sf.net>
477         * configure.ac:
478           Add --enable-experimental support. Activate synaesthesia when building
479           with --enable-experimental. Fix --enable external configure switch
480           description.
482 2007-02-09  Tim-Philipp Müller  <tim at centricular dot net>
484         * ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain),
485         (gst_lame_change_state):
486         * ext/lame/gstlame.h:
487           On receiving EOS, we try to push a last buffer with the remaining
488           samples. Don't do that if we got an unclean flow return on the last
489           gst_pad_push(), downstream might not handle this very gracefully
490           (see #403168).
492         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
493           Pass flow returns upstream (helps #403168).
495 2007-02-09  Stefan Kost  <ensonic@users.sf.net>
497         * gst/synaesthesia/gstsynaesthesia.c:
498         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
499         (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps),
500         (gst_synaesthesia_chain), (plugin_init):
501           check result of gst_pad_push() in _chain.
503 2007-02-09  Stefan Kost  <ensonic@users.sf.net>
505         * gst/synaesthesia/Makefile.am:
506         * gst/synaesthesia/gstsynaesthesia.c:
507         (gst_synaesthesia_class_init), (gst_synaesthesia_init),
508         (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps),
509         (gst_synaesthesia_chain), (plugin_init):
510         * gst/synaesthesia/synaescope.c:
511         * gst/synaesthesia/synaescope.h:
512           Added docs (not yet added to gst-plugins-ugl/docs/plugins as plugin is not
513           built by default). Fixed Makefile.am. Fixed license headers (its GPL as it
514           is derived from GPL code). Fixed GST_SYNAESTHESIA_CLASS macro. Added
515           GST_DEBUG_FUNCPTR. Reflowed _setcaps. Updated pad setup in _init. Fix
516           possible leak in _chain. (#356882)
518 2007-02-08  Tim-Philipp Müller  <tim at centricular dot net>
520         * gst/asfdemux/asfheaders.c:
521         * gst/asfdemux/asfheaders.h:
522         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init),
523         (gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
524         (gst_asf_demux_identify_guid), (asf_demux_peek_object),
525         (gst_asf_demux_chain_headers), (gst_asf_demux_chain),
526         (gst_asf_demux_setup_pad), (gst_asf_demux_process_stream),
527         (gst_asf_demux_process_ext_content_desc),
528         (gst_asf_demux_get_object_header), (gst_asf_demux_process_header),
529         (gst_asf_demux_process_file), (gst_asf_demux_process_comment),
530         (gst_asf_demux_process_bitrate_props_object),
531         (gst_asf_demux_process_header_ext),
532         (gst_asf_demux_process_language_list),
533         (gst_asf_demux_process_ext_stream_props),
534         (gst_asf_demux_process_queued_extended_stream_objects),
535         (gst_asf_demux_process_object), (gst_asf_demux_change_state):
536         * gst/asfdemux/gstasfdemux.h:
537           Refactor and clean up header parsing and chain function a bit; get
538           rid of some cruft; make header parsing a tad more robust, fixing
539           #403188.
541 2007-02-01  Tim-Philipp Müller  <tim at centricular dot net>
543         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event):
544           Post an error if we receive an EOS event while still waiting for the
545           ASF header object to come through.
547 2007-01-24  Tim-Philipp Müller  <tim at centricular dot net>
549         Patch by: Xavier B. <xavierb gmail com>
551         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_guid),
552         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
553         (gst_asf_demux_process_ext_content_desc),
554         (gst_asf_demux_process_data),
555         (gst_asf_demux_process_language_list),
556         (gst_asf_demux_process_ext_stream_props),
557         (gst_asf_demux_process_segment), (gst_asf_demux_handle_data):
558           Guard places where we assume that a certain amount of data is
559           available better against less data being available (should fix
560           infamous assertion crasher bug #336370). Also fixes a small
561           memory leak.
563 2007-01-11  Tim-Philipp Müller  <tim at centricular dot net>
565         * gst/realmedia/Makefile.am:
566         * gst/realmedia/rademux.c:
567         * gst/realmedia/rademux.h:
568         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
569         (gst_rmdemux_descramble_dnet_audio), (gst_rmdemux_plugin_init):
570         * gst/realmedia/rmutils.c: (gst_rm_utils_descramble_dnet_buffer):
571         * gst/realmedia/rmutils.h:
572           Add demuxer for RealAudio files (#349779).
574 2007-01-07  Sébastien Moutte  <sebastien@moutte.net>
575         
576         * Makefile.am:
577           Add win32/MANIFEST to EXTRA_DIST so win32 files will
578           be include in the next release.
579         * win32/MANIFEST:
580           Remove win32/common/config.h is which is not autogenerated yet.
581         
582 2006-12-30  Thomas Vander Stichele  <thomas at apestaart dot org>
584         * ext/lame/gstlame.c: (gst_lame_sink_setcaps), (gst_lame_chain):
585           warn when outgoing sample rate is different from incoming
587 2006-12-29  Jan Schmidt  <thaytan@mad.scientist.com>
589         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
590           All sample-rates < 32khz come from the LSF extensions, which only
591           use 1 granule. Fixes parsing of 22.05khz, 24khz and 16khz files.
593           Use gst_util_uint64_scale because we can.
595 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
597         * tests/check/elements/amrnbenc.c: (setup_amrnbenc),
598         (cleanup_amrnbenc):
599           and fix compilation of this test
601 2006-12-22  Stefan Kost  <ensonic@users.sf.net>
603         * tests/check/elements/amrnbenc.c: (setup_amrnbenc),
604         (cleanup_amrnbenc):
605         * tests/check/elements/mpeg2dec.c: (setup_mpeg2dec),
606         (cleanup_mpeg2dec):
607           re-apply as it was -bad and not -ugly that is frozen, doh
609 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
611         * tests/check/elements/amrnbenc.c: (setup_amrnbenc),
612         (cleanup_amrnbenc):
613         * tests/check/elements/mpeg2dec.c: (setup_mpeg2dec),
614         (cleanup_mpeg2dec):
615           revert my freeze breakage
617 2006-12-21  Stefan Kost  <ensonic@users.sf.net>
619         * gst/asfdemux/gstasfdemux.c:
620         (gst_asf_demux_get_gst_tag_from_tag_name),
621         (gst_asf_demux_process_ext_content_desc):
622           add a comment about a future change
623         
624         * tests/check/elements/amrnbenc.c: (setup_amrnbenc),
625         (cleanup_amrnbenc):
626         * tests/check/elements/mpeg2dec.c: (setup_mpeg2dec),
627         (cleanup_mpeg2dec):
628           consistent pad (de)activation
630 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
632         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_src_query_types):
633           Update query_types function too.
635 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
637         * gst/realmedia/rmdemux.c: (gst_rmdemux_src_query),
638         (gst_rmdemux_src_query_types):
639           Implement SEEKING query, make query function thread-safe.
641 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
643         * gst/realmedia/rmdemux.c: (gst_rmdemux_descramble_dnet_audio):
644           Use alignment-safe macros here too (subbuffers ...); guard against
645           hypothetical memory access beyond our given buffer in the case
646           where the buffer size is not a multiple of 2.
648 2006-12-15  Tim-Philipp Müller  <tim at centricular dot net>
650         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_seek_event),
651         (gst_asf_demux_process_data), (gst_asf_demux_process_file),
652         (gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
653         * gst/asfdemux/gstasfdemux.h:
654           Don't crash in the seek event handling code when playtime is 0,
655           as may be the case with live streams (#386218). Implement SEEKING
656           query so applications can query seekability without second-guessing
657           based on whether we have a duration or not.
659 2006-12-15  Thomas Vander Stichele  <thomas at apestaart dot org>
661         * Makefile.am:
662         * gst-plugins-ugly.doap:
663         * gst-plugins-ugly.spec.in:
664           add doap file
666 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
668         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
669           Use our alignment-safe macros here too, since we can't assume that
670           GST_BUFFER_DATA is aligned (these are subbuffers we're dealing with
671           here).
673 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
675         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_indx_data):
676           Also, don't read the index for a stream a second time when
677           operating in pull-mode and reaching the end of the file.
679 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
681         Patch by: Roland Kay  <roland.kay at ox compsoc net>
683         * gst/realmedia/rmdemux.c: (gst_rmdemux_reset):
684           Don't leak stream index (#385292).
686 2006-12-14  Tim-Philipp Müller  <tim at centricular dot net>
688         Based on patch by: Roland Kay  <roland.kay at ox compsoc net>
690         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain),
691         (gst_lame_setup):
692         * ext/lame/gstlame.h:
693           Fix leak (by calling lame_init_params() before lame_close()); handle
694           NULL return from lame_init() more gracefully. Fixes #385311.
696 2006-12-14  Jan Schmidt  <thaytan@mad.scientist.com>
698         * configure.ac:
699           Back to CVS
701 === release 0.10.5 ===
703 2006-12-13  Jan Schmidt <thaytan@mad.scientist.com>
705         * configure.ac:
706           releasing 0.10.5, "She said"
708 2006-12-12  David Schleef  <ds@schleef.org>
710         * gst/mpegstream/gstmpegparse.c: Use the GST_READ macro I meant
711           to in the previous checkin.  see #385192.  You can have your
712           cheese back now.
714 2006-12-12  David Schleef  <ds@schleef.org>
716         * gst/mpegstream/gstmpegparse.c: Fix unaligned load that loads
717           from the dereferenced integer, not the pointer itself.  Fixes
718           #385192.
720           I'm takin ur cheese!
722 2006-12-12  Tim-Philipp Müller  <tim at centricular dot net>
724         Based on patch by: Roland Kay  <roland.kay at ox compsoc net>
726         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr):
727           For version 4 streams, read the extra codec data size from the
728           header instead of assuming it is always 16 (also read it from the
729           right position) (#384989). For version 4 and 5 streams, check that
730           the specified extra codec data size doesn't make us read beyond the
731           chunk boundary (#384996).
733 2006-11-21  Tim-Philipp Müller  <tim at centricular dot net>
735         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_sized_buf):
736           Cosmetic changes: fix misleading debug statement, update
737           comment, add cast.
739 2006-11-21  Wim Taymans  <wim@fluendo.com>
741         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
743         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
744         (gst_mpeg2dec_reset), (gst_mpeg2dec_alloc_sized_buf),
745         (gst_mpeg2dec_alloc_buffer), (init_dummybuf), (handle_slice):
746         * ext/mpeg2dec/gstmpeg2dec.h:
747         Align buffers to a 16 byte boundary so the altivec optimisations
748         don't crash. Fixes #327350.
750 2006-11-20  Tim-Philipp Müller  <tim at centricular dot net>
752         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_audio_stream):
753           The availability of extra codec data isn't something that
754           warrants debug messages at WARNING level (see #376958).
756 2006-11-19  Tim-Philipp Müller  <tim at centricular dot net>
758         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_base_init),
759         (gst_dvd_demux_class_init), (gst_dvd_demux_combine_flows),
760         (gst_dvd_demux_send_subbuffer):
761         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
762         (gst_mpeg_demux_init_stream), (gst_mpeg_demux_parse_packet),
763         (gst_mpeg_demux_parse_pes), (gst_mpeg_demux_combine_flows),
764         (gst_mpeg_demux_send_subbuffer):
765         * gst/mpegstream/gstmpegdemux.h:
766         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
767         (gst_mpeg_parse_chain):
768           Fix flow value combination; this fixes playbin/totem locking up if
769           a VobSub file is specified as subtitle file (#334322). Flow value
770           combination should only happen once we are fairly sure we've got all
771           pads that are available for now. Since there isn't a well-specified
772           time when this is the case in MPEG, we'll just assume this is the
773           case once there has been a certain number of packets for each
774           stream we've found so far.
776 2006-11-15  Wim Taymans  <wim@fluendo.com>
778         Patch by: Jan Arne Petersen <jpetersen at jpetersen dot org>
780         * ext/mpeg2dec/gstmpeg2dec.c: (handle_sequence), (handle_slice):
781         Simplify the framerate code and support more framerates. Fixes #361584.
783 2006-11-15  Tim-Philipp Müller  <tim at centricular dot net>
785         Patch by: Sebastian Dröge  <slomo@circular-chaos.org>
787         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init):
788           Fix minor memleak when creating pads from static pad templates (#369627).
790         * tests/check/Makefile.am:
791         * tests/check/elements/.cvsignore:
792         * tests/check/elements/mpeg2dec.c: (setup_mpeg2dec),
793         (cleanup_mpeg2dec), (GST_START_TEST), (mpeg2dec_suite), (main):
794           Add unit tests for mpeg2dec (#369627).
796 2006-11-14  Wim Taymans  <wim@fluendo.com>
798         Patch by: Mark Nauwelaerts <manauw at skynet be>
800         * ext/lame/gstlame.c: (gst_lame_sink_event), (gst_lame_chain),
801         (gst_lame_change_state):
802         * ext/lame/gstlame.h:
803         Make lame timestamp flushed eos buffer by some additional timestamp
804         accounting. Fixes #374760.
806 2006-11-13  Michael Smith  <msmith@fluendo.com>
808         * gst/mpegaudioparse/gstmpegaudioparse.c:
809         (mp3_type_frame_length_from_header), (gst_mp3parse_reset),
810         (gst_mp3parse_init), (gst_mp3parse_dispose),
811         (gst_mp3parse_sink_event), (gst_mp3parse_chain), (head_check),
812         (gst_mp3parse_change_state):
813         * gst/mpegaudioparse/gstmpegaudioparse.h:
814           Make timestamp handling in mp3parse saner; now works for at least
815           simple cases.
817 2006-11-13  Michael Smith  <msmith@fluendo.com>
819         * gst/mpegaudioparse/Makefile.am:
820         * gst/mpegaudioparse/gstmpegaudioparse.c:
821         (mp3_type_frame_length_from_header), (gst_mp3parse_class_init),
822         (gst_mp3parse_reset), (gst_mp3parse_init), (gst_mp3parse_dispose),
823         (gst_mp3parse_sink_event), (gst_mp3parse_chain), (head_check),
824         (gst_mp3parse_change_state), (plugin_init):
825         * gst/mpegaudioparse/gstmpegaudioparse.h:
826           Bring mp3parse into the 21st century.
827           Use its own debug category, use gstadapter, format nicely to 80
828           columns, and fix incorrect handling of 32 kHz and less files.
830 2006-11-03  Wim Taymans  <wim@fluendo.com>
832         Patch by: Sebastian Droege <slomo at ubuntu dot com>
834         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_finalize),
835         (gst_mpeg2dec_alloc_buffer), (init_dummybuf), (handle_slice):
836         * ext/mpeg2dec/gstmpeg2dec.h:
837         libmpeg2 requires its output buffers to start at a 16byte aligned
838         address or the altivec optimizations will explode.
840 2006-10-19  Tim-Philipp Müller  <tim at centricular dot net>
842         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read):
843           Use dsi_pack.dsi_gi.vobu_ea correctly, add some more debugging
844           information (fixes #340433).
846 2006-10-16  Tim-Philipp Müller  <tim at centricular dot net>
848         Patch by: Josep Torra Valles  <josep at fluendo com>
850         * gst/iec958/ac3_padder.c: (ac3p_init):
851         * gst/mpegstream/gstmpegparse.c:
852         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse__rmf),
853         (gst_rmdemux_parse_prop), (gst_rmdemux_parse_mdpr),
854         (gst_rmdemux_parse_indx), (gst_rmdemux_parse_indx_data),
855         (gst_rmdemux_parse_data), (gst_rmdemux_parse_cont),
856         (gst_rmdemux_parse_packet):
857           Misc. fixes for problems discovered by Forte (different return types
858           in function declaration and definition, pointer arithmetics with
859           void pointers). Fixes #362639.
861 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
863         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title):
864           Don't announce audio or subtitle streams that aren't really present,
865           it makes dvddemux create pads that will never carry any data, which
866           is not good.
868 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
870         * ext/lame/gstlame.c: (gst_lame_set_property):
871           Round up not allowed bitrates to the next higher allowed one
872           (Closes: #361140).
874 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
876         * docs/plugins/Makefile.am:
877         * docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
878         * docs/plugins/gst-plugins-ugly-plugins-sections.txt:
879         * ext/lame/gstlame.c: (gst_lame_class_init):
880         * ext/lame/gstlame.h:
881           Add docs for lame and lame to docs. Specify allowed bitrates
882           in the properties description (#361140). Canonicalise object
883           property names (ie. use hyphen instead of underscore).
885         * docs/plugins/inspect/plugin-a52dec.xml:
886         * docs/plugins/inspect/plugin-amrnb.xml:
887         * docs/plugins/inspect/plugin-asf.xml:
888         * docs/plugins/inspect/plugin-dvdlpcmdec.xml:
889         * docs/plugins/inspect/plugin-dvdread.xml:
890         * docs/plugins/inspect/plugin-dvdsub.xml:
891         * docs/plugins/inspect/plugin-iec958.xml:
892         * docs/plugins/inspect/plugin-lame.xml:
893         * docs/plugins/inspect/plugin-mad.xml:
894         * docs/plugins/inspect/plugin-mpeg2dec.xml:
895         * docs/plugins/inspect/plugin-mpegaudioparse.xml:
896         * docs/plugins/inspect/plugin-mpegstream.xml:
897         * docs/plugins/inspect/plugin-siddec.xml:
898           Update version to CVS.
900 2006-10-13  Tim-Philipp Müller  <tim at centricular dot net>
902         * ext/lame/gstlame.c: (gst_lame_sink_setcaps),
903         (gst_lame_set_property), (gst_lame_get_property), (gst_lame_chain),
904         (plugin_init):
905         * po/POTFILES.in:
906           Add i18n magic to lame plugin. Throw decent error message when we
907           fail to setup the encoder (#361140, 361151); misc. minor clean-ups.
909 2006-10-10  Wim Taymans  <wim@fluendo.com>
911         * gst/realmedia/rdtdepay.c: (gst_rdt_depay_base_init),
912         (gst_rdt_depay_init), (gst_rdt_depay_setcaps),
913         (gst_rdt_depay_chain), (gst_rdt_depay_change_state):
914         Change caps to x-rdt, because it's not x-rtp.
916         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
917         (gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet),
918         (gst_rmdemux_plugin_init):
919         Activate pad before adding to the element.
920         Return the combined stream return values after pad_alloc.
922 2006-10-10  Wim Taymans  <wim@fluendo.com>
924         * ext/mpeg2dec/gstmpeg2dec.c: (handle_slice):
925         * ext/mpeg2dec/gstmpeg2dec.h:
926         Add some debugging to timestamp handling.
927         Make sure we don't convert invalid timestamps.
929 2006-10-09  Tim-Philipp Müller  <tim at centricular dot net>
931         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event),
932         (gst_asf_demux_setup_pad), (gst_asf_demux_process_segment):
933         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_get_audio_stream),
934         (gst_dvd_demux_get_subpicture_stream):
935         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_get_video_stream),
936         (gst_mpeg_demux_get_audio_stream),
937         (gst_mpeg_demux_get_private_stream):
938           Active pads before adding them to the running element. Don't assert
939           on non-BYTE format newsegment events in asfdemux.
941 2006-10-05  Tim-Philipp Müller  <tim at centricular dot net>
943         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title),
944         (gst_dvd_read_src_handle_seek_event):
945         * ext/mad/gstid3tag.c: (gst_id3_tag_chain):
946         * ext/mad/gstmad.c: (gst_mad_src_query), (gst_mad_chain):
947         * ext/sidplay/gstsiddec.cc:
948         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_parse_data):
949         * gst/realmedia/rmdemux.c: (gst_rmdemux_loop),
950         (gst_rmdemux_parse_packet):
951           Printf format fixes.
953 2006-10-03  Wim Taymans  <wim@fluendo.com>
955         * gst/realmedia/Makefile.am:
956         * gst/realmedia/rdtdepay.c: (gst_rdt_depay_base_init),
957         (gst_rdt_depay_class_init), (gst_rdt_depay_init),
958         (gst_rdt_depay_setcaps), (gst_rdt_depay_chain),
959         (gst_rdt_depay_set_property), (gst_rdt_depay_get_property),
960         (gst_rdt_depay_change_state), (gst_rdt_depay_plugin_init):
961         * gst/realmedia/rdtdepay.h:
962         Added RDT depayloader.
964         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr),
965         (gst_rmdemux_plugin_init), (plugin_init):
966         Remove unused function.
967         Added some more mime-types.
969 2006-09-28  Jan Schmidt  <thaytan@mad.scientist.com>
971         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (update_timestamps):
972           If an incoming timestamp is within one sample of our current
973           timestamp, then keep it. This prevents imprecision in the
974           PTS (which only has 90khz granularity) from affecting our stream.
976 2006-09-28  Tim-Philipp Müller  <tim at centricular dot net>
978         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_query):
979           Reflow code so that compiler doesn't complain about possible use
980           of uninitialised variable any longer; but just in case, initialise
981           it anyway; also take object ref in query function and do peer pad
982           stuff in a more thread-safe way.
984 2006-09-27  Wim Taymans  <wim@fluendo.com>
986         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_do_convert_query):
987         Init a variable to make compilers happy.
989 2006-09-21  Tim-Philipp Müller  <tim at centricular dot net>
991         Patch by: Martin Zlomek <martin dot zlomek at itonis dot tv>
993         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_reset),
994         (gst_dvd_demux_sync_stream_to_time):
995         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer),
996         (gst_mpeg_demux_synchronise_pads),
997         (gst_mpeg_demux_sync_stream_to_time):
998           Send newsegment updates for sparse streams (#350778).
999         
1000 2006-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
1002         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_do_convert_query):
1003           fix compile warning
1005 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
1007         * configure.ac:
1008         As another attempt, synaesthesia can be enabled by passing
1009         --with-plugins="synaesthesia" to configure
1011 2006-09-20  Stefan Kost  <ensonic@users.sf.net>
1013         * configure.ac:
1014            Don't build synaesthesia by default, until someone confirms that it
1015            is okay (filed as #356882)
1017 2006-09-18  Stefan Kost  <ensonic@users.sf.net>
1019         * configure.ac:
1020         * gst/synaesthesia/Makefile.am:
1021         * gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init),
1022         (gst_synaesthesia_sink_setcaps), (gst_synaesthesia_src_getcaps),
1023         (gst_synaesthesia_src_setcaps), (gst_synaesthesia_chain),
1024         (gst_synaesthesia_change_state), (plugin_init):
1025            Port synaesthesia.
1027 2006-09-17  Stefan Kost  <ensonic@users.sf.net>
1029         * ext/mad/gstid3tag.c:
1030         * gst/mpegstream/gstrfc2250enc.h:
1031         * gst/synaesthesia/gstsynaesthesia.c:
1032           More G_OBJECT macro fixing.
1034 2006-09-15  Wim Taymans  <wim@fluendo.com>
1036         Patch by: Yves Lefebvre <ivanohe at abacom dot com>
1038         * ext/mpeg2dec/gstmpeg2dec.c: (init_dummybuf):
1039         Fix initialisation dummy buffer, the offsets are relative to the start
1040         of the buffers. Fixes #356004.
1042 2006-09-09  Tim-Philipp Müller  <tim at centricular dot net>
1044         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read):
1045           Add convert query (needed for later when we just operate in time
1046           format and let the base source class handle all the seeking stuff).
1048 2006-09-07  Stefan Kost  <ensonic@users.sf.net>
1050         * gst/asfdemux/gstasfdemux.c:
1051         (gst_asf_demux_get_gst_tag_from_tag_name),
1052         (gst_asf_demux_process_ext_content_desc):
1053           Erm, lets properly fix it. The only non-text tag that we support is
1054           the track-number and that is an UINT. asfdemux was returning a GValue
1055           initialized as INT. Further the Track and not the TrackNumber tag
1056           (the latter is a string too).
1058 2006-09-07  Stefan Kost  <ensonic@users.sf.net>
1060         * gst/asfdemux/gstasfdemux.c:
1061         (gst_asf_demux_get_gst_tag_from_tag_name),
1062         (gst_asf_demux_process_ext_content_desc):
1063           Skip tags that are unknown (was producing an uninialized GValue).       
1065 2006-09-01  Michael Smith  <msmith@fluendo.com>
1067         Patch by: Michal Benes <michal.benes@itonis.tv>:
1069         * ext/a52dec/gsta52dec.c: (gst_a52dec_mode_get_type),
1070         (gst_a52dec_class_init), (gst_a52dec_init), (gst_a52dec_channels),
1071         (gst_a52dec_handle_frame), (gst_a52dec_change_state),
1072         (gst_a52dec_set_property), (gst_a52dec_get_property):
1073         * ext/a52dec/gsta52dec.h:
1074           Add two things to a52dec: configure the exact output format for ac3
1075           decoding through properties, if desired.
1076           By default, configure an output format preferred by downstream. Now
1077           that audioconvert lists caps by preference, this means that a52dec
1078           can do downmixing (iff required) rather than audioconvert, so it can
1079           use the ac3 downmix levels from the bitstream.
1081 2006-08-31  Jan Schmidt  <thaytan@mad.scientist.com>
1083         * ext/lame/Makefile.am:
1084         * ext/mpeg2dec/Makefile.am:
1085         * gst/dvdlpcmdec/Makefile.am:
1086         * gst/dvdsub/Makefile.am:
1087         * gst/mpegaudioparse/Makefile.am:
1088           Add missing GST_LIBS to the link flags
1090 2006-08-29  Tim-Philipp Müller  <tim at centricular dot net>
1092         * configure.ac:
1093           Up requirements to core 0.10.6 for gst_event_new_new_segment_full().
1095 2006-08-27  Stefan Kost  <ensonic@users.sf.net>
1097         * gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_new):
1098           Fix build for debug disabled
1100 2006-08-22  Tim-Philipp Müller  <tim at centricular dot net>
1102         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
1103         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream):
1104           Use static pad templates with ANY caps for the source pads for
1105           simplicity and to avoid warnings when creating pads for unhandled
1106           codec IDs (#351795).
1108 2006-08-16  Wim Taymans  <wim@fluendo.com>
1110         Patch by: Michal Benes <michal dot benes at itonis dot tv>
1112         * ext/mad/gstmad.c: (gst_mad_chain):
1113         Fix timestamping in mad by only activating a new timestamp when the
1114         previous frame has been decoded. Fixes #350723.
1115         Also clean up some of the non fatal warnings when the input buffer is
1116         too small to decode a header.
1118 === release 0.10.4 ===
1120 2006-08-14  Thomas Vander Stichele <thomas at apestaart dot org>
1122         * configure.ac:
1123           releasing 0.10.4, "Metal Molly"
1125 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
1127         Patch by: Wim Taymans <wim at fluendo dot com>
1129         * ext/a52dec/gsta52dec.c: (gst_a52dec_sink_event):
1130           Instead of forwarding the event in the wrong format, unref it and set
1131           a boolean that we still need to send it in the streaming thread.
1132           Fixes #350554
1134 2006-08-14  Thomas Vander Stichele  <thomas at apestaart dot org>
1136         Patch by: Edward Hervey <edward at fluendo dot com>
1138         * ext/dvdread/dvdreadsrc.c: (plugin_init):
1139         Put debug category initialization before use of GST_DEBUG, in order
1140         to remove a fatal warning.  Fixes #350895
1142 2006-08-08  Tim-Philipp Müller  <tim at centricular dot net>
1144         * gst/dvdsub/gstdvdsubdec.c: (plugin_init):
1145           Set rank to NONE for the time being until we make playbin handle
1146           subtitle pictures again (dvdsubdec seems to be a bit shaky at
1147           times when seeking, so it's probably better if it doesn't get
1148           autoplugged for the time being).
1150 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
1152         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
1153         (gst_rmdemux_parse_mdpr):
1154           Handle audio streams with stream_version 3 properly; warn about 
1155           unknown stream versions; handle unknown fourccs a tad more
1156           gracefully (setting bogus caps). Also, use GST_FOURCC_ARGS
1157           with GST_FOURCC_FORMAT.
1159 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
1161         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_goto_title):
1162           Error out properly if this is an interactive DVD (fixes #345694).
1164 2006-08-07  Jan Schmidt  <thaytan@mad.scientist.com>
1166         * ext/a52dec/gsta52dec.c: (gst_a52dec_chain):
1167           When the first_access is 1 or 0, we should copy the timestamp from 
1168           the incoming buffer if there is one.
1170 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
1172         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (gst_a52dec_push),
1173         (gst_a52dec_reneg), (gst_a52dec_handle_frame), (gst_a52dec_chain):
1174           Use GST_ELEMENT_ERROR for error reporting; post errors in some
1175           more places; remove superfluous newlines from debug statements.
1177 2006-08-07  Tim-Philipp Müller  <tim at centricular dot net>
1179         Patch by: Frédéric Riss  <frederic.riss at gmail com>
1181         * gst/dvdsub/gstdvdsubdec.c: (gst_send_subtitle_frame):
1182           Don't set negative durations on outgoing buffers (#350044),
1183           which happens when you use macros that got changed during
1184           the last unstable cycle because they were thought not to
1185           be used anywhere.
1186           
1187 2006-08-06  Tim-Philipp Müller  <tim at centricular dot net>
1189         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_stop),
1190         (gst_dvd_read_src_goto_chapter),
1191         (gst_dvd_read_src_get_chapter_starts),
1192         (gst_dvd_read_src_goto_title), (gst_dvd_read_src_get_next_cell),
1193         (gst_dvd_read_src_get_time_for_sector),
1194         (gst_dvd_read_src_get_sector_from_time), (gst_dvd_read_src_read),
1195         (gst_dvd_read_src_handle_seek_event), (gst_dvd_read_src_do_seek),
1196         (gst_dvd_read_src_goto_sector):
1197         * ext/dvdread/dvdreadsrc.h:
1198           Add basic support for time-based seeking; set timestamps on
1199           outgoing buffers if we have them; create table with
1200           chapter to time mapping when opening a title; rename
1201           gst_dvd_read_src_get_next_cell_for() to _get_next_cell() and
1202           make it take an explicit pgc argument; fix up some debugging
1203           messages so that title/chapter numbers are printed as starting
1204           from 1 for easier readability.
1206 2006-08-04  Tim-Philipp Müller  <tim at centricular dot net>
1208         * gst/realmedia/Makefile.am:
1209         * gst/realmedia/rmdemux.c: (gst_rmdemux_parse_mdpr),
1210         (gst_rmdemux_parse_cont):
1211         * gst/realmedia/rmutils.c: (gst_rm_utils_read_string8),
1212         (gst_rm_utils_read_string16), (gst_rm_utils_read_tags):
1213         * gst/realmedia/rmutils.h:
1214           Factor out some code into rmutils.[ch]; when reading
1215           strings, don't read beyond the available data; read
1216           metadata strings correctly (string length is 16 bits
1217           here, not just 8).
1218           
1219 2006-07-31  Jan Schmidt  <thaytan@mad.scientist.com>
1221         * Makefile.am:
1222         * configure.ac:
1223         * gst/asfdemux/gstasfdemux.c:
1224         Fix dist by including gst-libs/
1226 2006-07-29  Tim-Philipp Müller  <tim at centricular dot net>
1228         * ext/dvdread/dvdreadsrc.c: (plugin_init):
1229         * po/POTFILES.in:
1230           Make custom error messages translatable.
1232         * gst/asfdemux/gstasf.c: (plugin_init):
1233           Remove setlocale() call, doesn't seem to be needed or recommended for
1234           plugins, at least not according to gstreamer/docs/random/i18n.
1236 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
1238         * gst/asfdemux/Makefile.am:
1239         * gst/asfdemux/asfheaders.c:
1240         * gst/asfdemux/asfheaders.h:
1241         * gst/asfdemux/gstasf.c: (plugin_init):
1242         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_object):
1243           Error out when the stream is encrypted (rather than feeding
1244           garbage to the decoders). Fixes #349025.
1246 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
1248         * Makefile.am:
1249         * autogen.sh:
1250         * configure.ac:
1251         * po/POTFILES.in:
1252           Add/enable autofoo magic for translations.
1254 2006-07-28  Tim-Philipp Müller  <tim at centricular dot net>
1256         * gst/realmedia/rmdemux.c: (gst_rmdemux_reset),
1257         (gst_rmdemux_change_state), (gst_rmdemux_add_stream),
1258         (gst_rmdemux_parse_cont), (gst_rmdemux_descramble_cook_audio),
1259         (gst_rmdemux_handle_scrambled_packet), (gst_rmdemux_parse_packet):
1260           Don't leak streams, strings or caps. Get rid of unnecessary
1261           getcaps() function.
1263 2006-07-27  Tim-Philipp Müller  <tim at centricular dot net>
1265         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
1266         (gst_rmdemux_init), (gst_rmdemux_chain), (gst_rmdemux_add_stream),
1267         (gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_data),
1268         (gst_rmdemux_stream_clear_cached_subpackets),
1269         (gst_rmdemux_descramble_cook_audio),
1270         (gst_rmdemux_descramble_dnet_audio),
1271         (gst_rmdemux_handle_scrambled_packet), (gst_rmdemux_parse_packet):
1272           Descramble cook audio streams before sending them to the
1273           decoder. Fixes #347292.
1274           Also miscellaneous clean-ups and log-level changes.
1276 2006-07-26  Zaheer Abbas Merali  <zaheerabbas at merali dot org>
1278         * ext/lame/gstlame.c: (gst_lame_setup):
1279         Fix lame putting lots of 0's at start of mp3.  Fixes bug #348786.
1281 2006-07-21  Wim Taymans  <wim@fluendo.com>
1283         * ext/sidplay/gstsiddec.cc:
1284         * ext/sidplay/gstsiddec.h:
1285         Remove old metadata thing.
1287 2006-07-15  Tim-Philipp Müller  <tim at centricular dot net>
1289         * gst/asfdemux/gstasfdemux.c:
1290         (gst_asf_demux_get_ext_stream_props_for_stream),
1291         (gst_asf_demux_add_audio_stream), (gst_asf_demux_change_state):
1292           Find language codes for audio streams if they are available.
1294 2006-07-14  Tim-Philipp Müller  <tim at centricular dot net>
1296         * gst/asfdemux/asfheaders.h:
1297         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_obj_stream),
1298         (gst_asf_demux_process_stream),
1299         (gst_asf_demux_process_language_list),
1300         (gst_asf_demux_process_ext_stream_props),
1301         (gst_asf_demux_process_queued_extended_stream_objects),
1302         (gst_asf_demux_process_object), (gst_asf_demux_change_state):
1303         * gst/asfdemux/gstasfdemux.h:
1304           Parse extended stream properties objects and stream objects
1305           hidden inside them (but delay creation of the appropriate
1306           pads until after all the 'normal' stream objects have been
1307           dealt with) (#343763). Also parse language list object.
1309 2006-07-13  Wim Taymans  <wim@fluendo.com>
1311         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init),
1312         (gst_rmdemux_finalize), (gst_rmdemux_src_event),
1313         (find_seek_offset_time), (gst_rmdemux_perform_seek),
1314         (gst_rmdemux_src_query), (gst_rmdemux_change_state),
1315         (gst_rmdemux_loop), (gst_rmdemux_chain), (gst_rmdemux_send_event),
1316         (gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
1317         (gst_rmdemux_combine_flows), (gst_rmdemux_parse_packet):
1318         * gst/realmedia/rmdemux.h:
1319         Cleanups, use GstSegment for seeking.
1320         Fix error handling.
1321         Combine flow return from all streams.
1323 2006-07-10  Wim Taymans  <wim@fluendo.com>
1325         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer), (handle_slice):
1326         Fix refcounting when cropping. Fixes #341677.
1328 2006-07-09  Wim Taymans  <wim@fluendo.com>
1330         Patch by: Grzegorz Lukasik <hauserx at gmail dot com>
1332         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream),
1333         (gst_asf_demux_process_segment):
1334         Fix typo. Closes #347029.
1336 2006-07-08  Tim-Philipp Müller  <tim at centricular dot net>
1338         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_chunk):
1339           Skip chunks for unknown streams properly. Fixes broken sound
1340           and/or video for files that have additional streams that
1341           we don't recognise yet (e.g. if they are embedded in extended
1342           stream properties). Partly fixes #343763.
1344 2006-07-07  Tim-Philipp Müller  <tim at centricular dot net>
1346         * gst/asfdemux/asfheaders.c:
1347         * gst/asfdemux/asfheaders.h:
1348         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_identify_guid),
1349         (gst_asf_demux_process_header), (gst_asf_demux_push_obj),
1350         (gst_asf_demux_pop_obj), (gst_asf_demux_process_object),
1351         (gst_asf_demux_change_state):
1352         * gst/asfdemux/gstasfdemux.h:
1353           Add some more GUIDs and make debug log more readable
1354           and easier to follow when parsing the headers.
1356 2006-06-30  Tim-Philipp Müller  <tim at centricular dot net>
1358         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
1359         (gst_dvd_read_src_is_seekable), (gst_dvd_read_src_class_init),
1360         (gst_dvd_read_src_stop), (gst_dvd_read_src_goto_title),
1361         (gst_dvd_read_src_create), (gst_dvd_read_src_handle_seek_event),
1362         (gst_dvd_read_src_do_seek), (gst_dvd_read_src_src_event):
1363         * ext/dvdread/dvdreadsrc.h:
1364           Rewrite seeking code and make seeking in DVDs work (#337834).
1366 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
1368         * autogen.sh:
1369           Check for automake-1.9 as well.
1371 2006-06-29  Tim-Philipp Müller  <tim at centricular dot net>
1373         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_is_nav_pack):
1374           Make check stronger.
1376 2006-06-28  Tim-Philipp Müller  <tim at centricular dot net>
1378         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_setup_pad),
1379         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
1380         (gst_asf_demux_push_buffer):
1381         * gst/asfdemux/gstasfdemux.h:
1382           Handle unknown codec IDs/fourccs properly (#345879); send tag
1383           events after newsegment event; fix use of GST_FOURCC_FORMAT
1384           macro.
1386 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
1388         * ext/a52dec/gsta52dec.c: (plugin_init):
1389           Call the channel positions get_type() method in plugin_init 
1390           to ensure that it isn't simultaneously called later from 
1391           multiple threads.
1393 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
1395         * gst/mpegstream/gstmpegpacketize.c:
1396         (gst_mpeg_packetize_flush_cache), (gst_mpeg_packetize_put):
1397         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_chain):
1398           Also flush packetizer cache when we get a buffer that has the
1399           DISCONT flag set; update current byte position from buffer
1400           offset after a flush.
1402 2006-06-23  Tim-Philipp Müller  <tim at centricular dot net>
1404         * gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_new),
1405         (gst_mpeg_packetize_flush_cache), (gst_mpeg_packetize_destroy),
1406         (gst_mpeg_packetize_read):
1407         * gst/mpegstream/gstmpegpacketize.h:
1408         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_process_event),
1409         (gst_mpeg_parse_change_state):
1410           Flush packetizer cache when we get a FLUSH_STOP event;
1411           remove unused source pad member from packetizer; add debug
1412           category for packetizer.
1414 2006-06-23  Jan Schmidt  <thaytan@mad.scientist.com>
1416         * ext/a52dec/gsta52dec.c: (gst_a52dec_channels), (plugin_init):
1417           Treat dual-mono as stereo. It should really be output on 2 separate
1418           pads, but isn't for now.
1420 2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>
1422         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
1423           Assume 4:3 DAR rather than 4:3 PAR (#345184).
1425 2006-06-19  Tim-Philipp Müller  <tim at centricular dot net>
1427         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format):
1428           Assume pixel-aspect-ratio of 4:3 if libmpeg2dec doesn't give us
1429           any PAR whatsoever (rather than using 0/0, which will lead to
1430           an abort later on). Fixes #345184.
1432 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
1434         Patch by: Michael Dominic K.  < mdk at mdk org pl>
1436         * ext/mad/gstmad.c: (gst_mad_chain):
1437           Send newsegment event before calling
1438           gst_pad_alloc_buffer_and_set_caps(), makes mad behave better
1439           in connection with pad blocking (#342594). While we're at it,
1440           do some minor clean-ups.
1442 2006-06-17  Tim-Philipp Müller  <tim at centricular dot net>
1444         * configure.ac:
1445           Fix --disable-external (can't set conditionals conditionally,
1446           #343602).
1448 2006-06-15  Tim-Philipp Müller  <tim at centricular dot net>
1450         * ext/a52dec/Makefile.am:
1451           ... and then he said "When you go and fix the build you
1452           better make sure you have some spare backslashes in your
1453           pocket".
1455 2006-06-13  Wim Taymans  <wim@fluendo.com>
1457         * ext/sidplay/gstsiddec.cc:
1458         Fix copyright, email addresses and descriptions.
1459         Use saner defaults for arguments. Fixes #344667.
1460         constify some stuff.
1461         Fix memleaks.
1462         Add tags.
1463         Fix negotiation to do mono/44100 by default.
1464         Post error messages.
1465         Use _scale_int where possible.
1467 2006-06-12  Wim Taymans  <wim@fluendo.com>
1469         * ext/dvdnav/.cvsignore:
1470         More ignore
1472 2006-06-12  Wim Taymans  <wim@fluendo.com>
1474         * tests/check/elements/amrnbenc.c: (push_data):
1475         Init memory before feeding it to the encoder to make
1476         the valgrind test succeed.
1478 2006-06-12  Edward Hervey  <edward@fluendo.com>
1480         * gst/asfdemux/.cvsignore:
1481         More ignore
1483 2006-06-11  Tim-Philipp Müller  <tim at centricular dot net>
1485         * .cvsignore:
1486           Ignore files generated by 'make dist'.
1488 2006-06-11  Thomas Vander Stichele  <thomas at apestaart dot org>
1490         * autogen.sh:
1491         * configure.ac:
1492         * ext/a52dec/Makefile.am:
1493         * ext/dvdnav/Makefile.am:
1494         * ext/dvdread/Makefile.am:
1495         * ext/lame/Makefile.am:
1496         * ext/mad/Makefile.am:
1497         * ext/mpeg2dec/Makefile.am:
1498         * ext/sidplay/Makefile.am:
1499           update build files
1501 2006-06-07  Wim Taymans  <wim@fluendo.com>
1503         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_finalize),
1504         (gst_mpeg2dec_reset), (clear_buffers), (handle_picture),
1505         (gst_mpeg2dec_sink_convert), (gst_mpeg2dec_src_convert),
1506         (gst_mpeg2dec_change_state):
1507         * ext/mpeg2dec/gstmpeg2dec.h:
1508         Simplify and don't leak our buffer pool.
1509         Use _scale_int.
1510         Remove unfixed bug number from previous ChangeLog entry.
1512 2006-06-07  Wim Taymans  <wim@fluendo.com>
1514         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_base_init),
1515         (gst_mpeg2dec_class_init), (gst_mpeg2dec_init),
1516         (gst_mpeg2dec_finalize), (gst_mpeg2dec_reset),
1517         (gst_mpeg2dec_qos_reset), (gst_mpeg2dec_alloc_buffer),
1518         (gst_mpeg2dec_negotiate_format), (init_dummybuf),
1519         (handle_sequence), (handle_picture), (handle_slice),
1520         (gst_mpeg2dec_chain), (gst_mpeg2dec_sink_event),
1521         (gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
1522         * ext/mpeg2dec/gstmpeg2dec.h:
1523         Fix padtemplate as we can now do fractional framerates.
1524         Small cleanups.
1525         Use GstSegment.
1526         Add simple frame dropping QoS.
1527         Precalc buffer output sizes and UV offsets.
1528         Always give libmpeg2 a valid fbuf when it wants one.
1529         don't trust libmpeg to discard our buffers but manage it
1530         ourselves.
1531         Fixes #343627, #335288
1533 2006-06-05  Sebastien Moutte  <sebastien@moutte.net>
1535         * win32/MANIFEST:
1536         Add a manifest for futures ugly win32 releases.
1537         * gst/iec958/ac3iec.c: (ac3iec_chain_raw):
1538         Move bufcaps declaration at the beginning of the instructions 
1539         block.
1540         
1541 2006-06-02  Stefan Kost  <ensonic@users.sf.net>
1543         * ext/a52dec/gsta52dec.h:
1544         * ext/amrnb/amrnbdec.h:
1545         * ext/amrnb/amrnbenc.h:
1546         * ext/amrnb/amrnbparse.h:
1547         * ext/mpeg2dec/gstmpeg2dec.h:
1548         * ext/sidplay/gstsiddec.h:
1549         * gst/ac3parse/gstac3parse.h:
1550         * gst/asfdemux/gstasfdemux.h:
1551         * gst/asfdemux/gstasfmux.h:
1552         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
1553         * gst/iec958/ac3iec.h:
1554         * gst/mpegaudioparse/gstmpegaudioparse.h:
1555         * gst/mpegstream/gstdvddemux.h:
1556         * gst/mpegstream/gstmpegclock.h:
1557         * gst/mpegstream/gstmpegdemux.h:
1558         * gst/mpegstream/gstmpegparse.h:
1559         Fix more gobject macros: obj<->klass, GstXXX<->GstXXXClass
1561 2006-05-27  Tim-Philipp Müller  <tim at centricular dot net>
1563         * README:
1564           Replace current README (containing the release notes from
1565           some 0.9.x version) with a proper README taken from the core.
1567 2006-05-24  Wim Taymans  <wim@fluendo.com>
1569         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_event), (gst_amrnbdec_chain):
1570         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_init),
1571         (gst_amrnbparse_sink_event), (gst_amrnbparse_chain),
1572         (gst_amrnbparse_sink_activate), (gst_amrnbparse_state_change):
1573         * ext/amrnb/amrnbparse.h:
1574         Sortof first quick cleanup of all this mess... 
1575         Don't crap out on empty and invalid FTs but treat them as
1576         empty packets, the decoder handles them fine.
1577         Fixes #342222.
1579 2006-05-22  Tim-Philipp Müller  <tim at centricular dot net>
1581         * gst/asfdemux/gstasf.c: (plugin_init):
1582           Call gst_riff_init() so the riff debug category gets set up
1583           before it is being used.
1585 2006-05-19  Michael Smith  <msmith@fluendo.com>
1587         * gst/iec958/ac3_padder.c: (ac3p_parse):
1588         * gst/iec958/ac3_padder.h:
1589         * gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_set_property),
1590         (ac3iec_chain_raw), (ac3iec_change_state):
1591         * gst/iec958/ac3iec.h:
1592           Write rate into the caps, for the allowed ac3 rates. Some minor
1593           cleanups.
1595 2006-05-18  Tim-Philipp Müller  <tim at centricular dot net>
1597         Patch by: James "Doc" Livingston  <doclivingston gmail com>
1599         * ext/mad/gstid3tag.c: (gst_id3_tag_get_tag_to_render):
1600           Do tag merging correctly (#339918). Output taglists
1601           properly in debug statements too while we're at it.
1603 2006-05-11  Jan Schmidt  <thaytan@mad.scientist.com>
1605         * ext/a52dec/gsta52dec.c: (gst_a52dec_chain):
1606           Add more debug
1608         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
1609         (gst_dvdlpcmdec_init), (update_timestamps),
1610         (gst_dvdlpcmdec_chain_dvd), (gst_dvdlpcmdec_chain_raw),
1611         (dvdlpcmdec_sink_event):
1612         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
1613           If we have a first_access offset but no current timestamp (might
1614           happen after a seek), then calculate a start time for the first
1615           portion so that it will align with the timestamp given for the
1616           first_access portion.
1618           If a new-segment arrives with format time, store the start
1619           time as a failsafe timestamp in case we never get any further
1620           timestamp info (unlikely)
1621         
1622           Mask out the 'frame number' section of the incoming header so
1623           that we don't consider it to be changing on every buffer and
1624           reset the caps constantly.
1626           Use gst_util_uint64_scale for duration calculation
1628 2006-05-11  Michael Smith  <msmith@fluendo.com>
1630         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
1631           Fix timestamping for cases where the first_access parameter is 4.
1632           Ensure we don't overrun buffers in other cases.
1634 2006-05-10  Tim-Philipp Müller  <tim at centricular dot net>
1636         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_get_string):
1637           Fix silly bug when reading metadata (#341254).
1639 2006-05-08  Edward Hervey  <edward@fluendo.com>
1641         * autogen.sh: (CONFIGURE_DEF_OPT): 
1642         libtoolize on Darwin/MacOSX is called glibtoolize
1644 2006-05-06  Tim-Philipp Müller  <tim at centricular dot net>
1646         * ext/lame/gstlame.c: (gst_lame_get_type),
1647         (gst_lame_release_memory), (gst_lame_init), (gst_lame_sink_event),
1648         (gst_lame_setup), (gst_lame_change_state):
1649         * ext/lame/gstlame.h:
1650           Remove tag writing from lame (which was completely broken
1651           anyway, #329184). Leaving GstTagSetter interface around for
1652           now, albeit non-functional. Should be removed completely
1653           in 0.11. Use the 'id3v2mux' plugin from -good for writing
1654           tags.
1656 2006-05-05  Maciej Katafiasz  <mathrick@freedesktop.org>
1658         * ext/dvdread/dvdreadsrc.c:
1659         * gst/asfdemux/gstasfdemux.c:
1660         Add semicolons after GST_BOILERPLATE[_FULL] so that
1661         indent doesn't mess up following lines.
1662         
1663 2006-05-05  Tim-Philipp Müller  <tim at centricular dot net>
1665         Patch by: Andres Salomon  <dilinger at debian org>
1667         * ext/lame/gstlame.c: (gst_lame_sink_event):
1668           Fix typo (comma vs. semicolon) (#340710).
1670 2006-05-04  Tim-Philipp Müller  <tim at centricular dot net>
1672         Patch by: Lutz Müller <lutz at topfrose de>
1674         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_src_query):
1675           Make mad the second element to support the highly useful
1676           FORMATS query (#340594)
1678 2006-05-02  Edward Hervey  <edward@fluendo.com>
1680         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_sink_convert),
1681         (gst_mpeg2dec_src_query):
1682         Remember the query duration format before passing it upstream since it
1683         could have been modified.
1684         Add GST_WARNING_OBJECT in sink convert function to detail why the
1685         conversion didn't work.
1687 2006-04-26  Stefan Kost  <ensonic@users.sf.net>
1689         * ext/mad/gstid3tag.c:
1690         * ext/mad/gstmad.c:
1691         * gst/ac3parse/gstac3parse.c:
1692         * gst/dvdlpcmdec/gstdvdlpcmdec.c:
1693         * gst/synaesthesia/gstsynaesthesia.c:
1694           Define GstElementDetails as const and also static (when defined as
1695           global)
1697 2006-04-25  Tim-Philipp Müller  <tim at centricular dot net>
1699         * ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_push_titlelang_event):
1700           Fix name of custom event (use same as dvdreadsrc).
1702         * gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_chain),
1703         (gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event):
1704           Fix event parsing (the event name is in the structure, not the
1705           name of the structure itself); also fix indentation after
1706           boilerplate macro.
1708 2006-04-23  Tim-Philipp Müller  <tim at centricular dot net>
1710         * ext/mad/gstid3tag.c: (plugin_init):
1711           Change debug category to 'id3mux'.
1713 2006-04-22  Tim-Philipp Müller  <tim at centricular dot net>
1715         Patch by: Alexander Lancaster  <alexl at users sourceforge net>
1717         * ext/mad/gstid3tag.c: (gst_id3_tag_get_caps), (gst_id3_tag_init),
1718         (gst_id3_tag_sink_event), (gst_id3_tag_src_link),
1719         (gst_id3_tag_chain):
1720           When acting as a muxer, set caps on outgoing buffers and set caps
1721           on source pad (fixes #323658). Remove unused application/x-gst-tags
1722           cruft from the 0.6 days.
1724 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
1726         * ext/mad/gstmad.c: (gst_mad_convert_sink), (gst_mad_convert_src),
1727         (gst_mad_src_query), (gst_mad_chain):
1728           .. and DEFAULT queries should work too. Use magic gst util scale
1729           functions in some places.
1731 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
1733         * ext/mad/gstmad.c: (gst_mad_src_query):
1734           Fix duration query in BYTES format (#336824).
1736 2006-04-21  Tim-Philipp Müller  <tim at centricular dot net>
1738         Patch by: Ed Catmur  <ed at catmur dot co dot uk>
1740         * ext/lame/gstlame.c: (gst_lame_sink_event):
1741           Don't crash if we get an EOS event before the encoder
1742           has been set up (#339287).
1744 2006-04-21  Wim Taymans  <wim@fluendo.com>
1746         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_start),
1747         (gst_dvd_read_src_goto_title), (gst_dvd_read_src_read),
1748         (gst_dvd_read_src_create), (gst_dvd_read_src_goto_sector):
1749         Move errors out of the normal code flow.
1750         Don't send eos, basesrc will do that for us when needed.
1752 2006-04-21  Wim Taymans  <wim@fluendo.com>
1754         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_change_state):
1755         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_change_state):
1756         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_change_state):
1757         Do state changes correctly
1759 2006-04-13  Tim-Philipp Müller  <tim at centricular dot net>
1761         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_sized_buf),
1762         (gst_mpeg2dec_alloc_buffer):
1763           Can't use gst_pad_alloc_buffer*() when we are going to crop
1764           the image before sending it out. Downstream basetransform-based
1765           elements will complain about the wrong unit size otherwise
1766           (when not operating in passthrough-mode at least).
1767           Const-ify some static variables and do some minor clean-ups.
1768           Use I420 macros for size/offsets (not really necessary in this
1769           particular context, but this kind of code gets copy'n'pasted).
1771 2006-04-13  Tim-Philipp Müller  <tim at centricular dot net>
1773         * gst/mpegstream/gstmpegpacketize.c: (gst_mpeg_packetize_put),
1774         (read_cache):
1775         * gst/mpegstream/gstmpegpacketize.h:
1776           g_malloc() can't fail, we don't need to handle this. Same for
1777           gst_buffer_new_and_alloc().
1779         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_chain):
1780           klass->send_buffer() should have the same semantics as
1781           gst_pad_push(), ie. ownership of the buffer is transfered,
1782           so we never have to unref the buffer no matter what the flow
1783           return value was.
1785 2006-04-10  Thomas Vander Stichele  <thomas at apestaart dot org>
1787         * common/check.mak:
1788           allow for specifying more than one suppressions file in SUPPRESSIONS
1789         * Makefile.am:
1790         * tests/Makefile.am:
1791         * tests/check/.cvsignore:
1792         * tests/check/Makefile.am:
1793         * tests/check/elements/.cvsignore:
1794         * configure.ac:
1795           add tests/check
1796         * tests/check/gst-plugins-ugly.supp:
1797           add suppressions for libs used by -ugly
1798         * tests/check/elements/amrnbenc.c: (buffer_new), (buffer_unref),
1799         (setup_amrnbenc), (cleanup_amrnbenc), (push_data),
1800         (GST_START_TEST), (amrnbenc_suite), (main):
1801           add a simple test for encoding amr
1802         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_init):
1803           fix pad template leaks
1805 2006-04-10  Michael Smith  <msmith@fluendo.com>
1807         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
1808           Plug big leak in AMR encoder.
1810 2006-04-09  Sebastien Moutte  <sebastien@moutte.net>
1812         * ext/mad/gstmad.c: (index_seek):
1813           move GstIndexEntry *entry variable declaration before 
1814           the first instruction
1815         * ext/mad/gstmad.c: 
1816           remove debug macros with variable number of parameter by using 
1817           GST_DEBUG for WIN32
1818         * gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_parse_subpic):
1819           use gst_guint64_to_gdouble for conversions
1820         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_sync_stream_to_time):
1821           replace __FUNCTION__ which is not supported by MSVC by the current
1822           function name
1823         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_reset):
1824           remove LL suffix by using G_GINT64_CONSTANT
1825         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead),
1826           (gst_mpeg_parse_get_rate):
1827           use gst_guint64_to_gdouble for conversions
1828         * gst/mpegstream/gstmpegparse.h:
1829           remove LL suffix by using G_GINT64_CONSTANT
1830         * win32/vs6:
1831           add project files for tagac3parse, asfdemux, dvdlpcmdec, dvdsub,
1832           iec958, lame, mad, mpegaudioparse, mpegstream, realmedia, synaesthesia
1833         
1834 2006-04-08  Stefan Kost  <ensonic@users.sf.net>
1836         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_class_init):
1837         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_class_init):
1838         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_class_init):
1839         * ext/mad/gstmad.c: (gst_mad_class_init):
1840         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_class_init):
1841         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_class_init):
1842         * gst/asfdemux/gstasfmux.c: (gst_asfmux_class_init):
1843         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_class_init):
1844         * gst/iec958/ac3iec.c: (ac3iec_class_init):
1845         * gst/mpegaudioparse/gstmpegaudioparse.c:
1846         (gst_mp3parse_class_init):
1847         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_class_init):
1848         * gst/mpegstream/gstmpegclock.c: (gst_mpeg_clock_class_init):
1849         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_class_init):
1850         * gst/realmedia/rmdemux.c: (gst_rmdemux_class_init):
1851         * gst/synaesthesia/gstsynaesthesia.c:
1852         (gst_synaesthesia_class_init):
1853         Fix #337365 (g_type_class_ref <-> g_type_class_peek_parent)
1855 2006-04-07  Tim-Philipp Müller  <tim at centricular dot net>
1857         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
1859         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event),
1860         (gst_asf_demux_push_buffer):
1861           Send newsegment event only once per pad, fixes #336550.
1863 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1865         * docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
1866         * docs/plugins/inspect/plugin-siddec.xml:
1867           add siddec
1868         * ext/dvdnav/dvdnavsrc.c:
1869           doc fixes
1871 2006-04-01  Thomas Vander Stichele  <thomas at apestaart dot org>
1873         * configure.ac:
1874           rework similarly to other modules
1875         * ext/a52dec/gsta52dec.c:
1876         * ext/amrnb/amrnb.c:
1877         * ext/dvdnav/dvdnavsrc.c:
1878         * ext/dvdread/dvdreadsrc.c:
1879         * ext/lame/gstlame.c:
1880         * ext/mad/gstid3tag.c:
1881         * ext/mpeg2dec/gstmpeg2dec.c:
1882         * ext/sidplay/gstsiddec.cc:
1883         * gst/asfdemux/gstasf.c:
1884         * gst/dvdlpcmdec/gstdvdlpcmdec.c:
1885         * gst/dvdsub/gstdvdsubdec.c:
1886         * gst/iec958/ac3iec.c:
1887         * gst/mpegaudioparse/gstmpegaudioparse.c:
1888         * gst/mpegstream/gstmpegstream.c:
1889         * gst/realmedia/rmdemux.c: (plugin_init):
1890           use the correct defines
1892 2006-03-31  Thomas Vander Stichele <thomas at apestaart dot org>
1894         * configure.ac:
1895           back to HEAD
1897 === release 0.10.3 ===
1899 2006-03-31  Thomas Vander Stichele <thomas at apestaart dot org>
1901         * configure.ac:
1902           releasing 0.10.3, "Late Plane"
1904 2006-03-29  Tim-Philipp Müller  <tim at centricular dot net>
1906         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_event):
1907           Don't unref event unconditionally after giving away ownership
1908           (gst_pad_push_event(), gst_pad_send_event() and
1909           gst_pad_event_default() take ownership of the event
1910           passed to them). Fixes warnings/crashes caused by
1911           navigation events.
1913 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1915         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer):
1916           Don't ref NULL caps (private streams have NULL caps) (#336387);
1917           also, no need to set caps on the same buffer twice.
1919 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1921         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event),
1922         (gst_dvd_demux_handle_dvd_event), (gst_dvd_demux_get_audio_stream),
1923         (gst_dvd_demux_get_subpicture_stream):
1924         * gst/mpegstream/gstmpegdemux.c:
1925         (gst_mpeg_demux_sync_stream_to_time):
1926           Don't leak element and pad names in error messages, use
1927           GST_DEBUG_PAD_NAME instead. Add some more debug code.
1929 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1931         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
1932         (gst_dvd_read_src_goto_title), (gst_dvd_read_src_read):
1933           Name the structure in the custom event with the
1934           language codes for the audio and subtitle streams
1935           actually like dvddemux expects it to be named.
1936           Set caps on source pad and outgoing buffers.
1938 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1940         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_set_property),
1941         (gst_lame_get_property), (gst_lame_setup):
1942         * ext/lame/gstlame.h:
1943           Make xingheader property non-functional, it's broken anyway
1944           after all (use xingmux instead).
1946 2006-03-28  Tim-Philipp Müller  <tim at centricular dot net>
1948         * ext/lame/gstlame.c: (gst_lame_sink_event):
1949           On EOS, flush encoder and send remaining data. Fix
1950           return value handling in sink event function.
1952 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
1954         Patch by: Jürg Billeter  <j at bitron dot ch>
1956         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_set_property):
1957           Fix wrong check for started flag when setting the 'device' property.
1958           We want to allow it when the source is NOT started yet and ignore it
1959           when the source is running.
1961 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
1963         Patch by: Fabrizio Gennari  <fabrizio dot ge at tiscali dot it>
1965         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_setup_pad),
1966         (gst_asf_demux_process_chunk):
1967         * gst/asfdemux/gstasfdemux.h:
1968           Subtract first timestamp from timestamps, so that
1969           stream starts from 0; makes live streams that don't
1970           start at 0 work again (fixes #317310, #336097).
1972 2006-03-27  Tim-Philipp Müller  <tim at centricular dot net>
1974         Patch by: Christian Kirbach
1976         * configure.ac:
1977           Remove CXX tag from AS_LIBTOOL_TAGS, just like we did for
1978           -good. Fixes build on some systems (#331838).
1980 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
1982         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
1983         (gst_rmdemux_parse_cont):
1984           Extract more tags and also post codec name tag on the
1985           bus so this shows up in totem and nautilus.
1987 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
1989         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
1990         (gst_rmdemux_fill_audio_packet), (gst_rmdemux_parse_packet):
1991           Extra data usually goes into the caps as 'codec_data', not
1992           as first buffer into the stream.
1993           Need to byte swap AC3 content in realmedia files for some
1994           reason (fixes #331588).
1996 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
1998         * gst/realmedia/rmdemux.c: (gst_rmdemux_init),
1999         (gst_rmdemux_validate_offset), (gst_rmdemux_loop),
2000         (gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet):
2001           When operating in pull mode, post an error message on the
2002           bus when all source pads are unlinked or some other fatal
2003           error occured (#323023). Regrade some recurring debug messages
2004           to LOG level. Convert c++-style comments into C-style ones.
2006 2006-03-24  Tim-Philipp Müller  <tim at centricular dot net>
2008         * gst/realmedia/rmdemux.c: (gst_rmdemux_perform_seek),
2009         (gst_rmdemux_loop), (gst_rmdemux_chain), (gst_rmdemux_send_event),
2010         (gst_rmdemux_all_source_pads_unlinked),
2011         (gst_rmdemux_at_least_one_stream_flowok), (gst_rmdemux_add_stream),
2012         (gst_rmdemux_parse_packet):
2013         * gst/realmedia/rmdemux.h:
2014           Handle unlinked source pads properly and stop if all source pads
2015           are unlinked (#323023).
2017 2006-03-23  Wim Taymans  <wim@fluendo.com>
2019         Patch by: Michal Benes <michal dot benes at xeris dot cz>
2021         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_init),
2022         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes),
2023         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_reset):
2024         * gst/mpegstream/gstmpegdemux.h:
2025         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_parse_packhead):
2026         Timestamps in mpeg stream are 32-bit numbers. Therefore, with a
2027         clock_freq of 90kHz this timestamp overflows every ~13 hours. This 
2028         situation really happens when grabbing DVB streams. Current 
2029         mpegdemuxer can not handle this situation correctly and it 
2030         restarts counting gstreamer timestamps from zero.
2031         Fixes #326598.
2033 2006-03-15  Michael Smith  <msmith@fluendo.com>
2035         * ext/a52dec/gsta52dec.c: (gst_a52dec_sink_event),
2036         (gst_a52dec_chain_raw), (gst_a52dec_change_state):
2037         * ext/a52dec/gsta52dec.h:
2038           Fix #334550: failure to play raw AC3 files due to segment problems.
2040 2006-03-15  Tim-Philipp Müller  <tim at centricular dot net>
2042         Patch by: Christophe Fergeau  <teuf gnome org>
2044         * ext/lame/gstlame.c: (gst_lame_release_memory),
2045         (gst_lame_finalize), (gst_lame_class_init),
2046         (gst_lame_sink_setcaps), (gst_lame_init), (gst_lame_sink_event),
2047         (gst_lame_change_state):
2048           Fix some memory leaks (#333345), use GST_DEBUG_FUNCPTR more often.
2050 2006-03-14  Tim-Philipp Müller  <tim at centricular dot net>
2052         * ext/mad/gstmad.c: (gst_mad_convert_sink), (gst_mad_update_info),
2053         (gst_mad_sink_event), (gst_mad_change_state):
2054           Include AUDIO_CODEC tag with tags posted if input is not
2055           framed (#334258). Use _scale() util functions in more places.
2057 2006-03-12  Christophe Fergeau  <teuf@gnome.org>
2059         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2061         * ext/lame/gstlame.c: (gst_lame_class_init): mark the xing-header
2062         property as BROKEN (see
2063         http://bugzilla.gnome.org/show_bug.cgi?id=330317#c19 for an
2064         explanation why it's broken).
2066 2006-03-07  Tim-Philipp Müller  <tim at centricular dot net>
2068         Patch by: Alex Lancaster
2069         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach):
2070           Add support for writing the GST_TAG_ALBUM_VOLUME_NUMBER
2071           tag (#333683)
2072           
2073 2006-03-02  Wim Taymans  <wim@fluendo.com>
2075         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_init),
2076         (gst_amrnbdec_setcaps), (gst_amrnbdec_chain),
2077         (gst_amrnbdec_state_change):
2078         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_init),
2079         (gst_amrnbenc_setcaps), (gst_amrnbenc_chain),
2080         (gst_amrnbenc_state_change):
2081         * ext/amrnb/amrnbenc.h:
2082         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_init),
2083         (gst_amrnbparse_query):
2084         Further fancyfication.
2085         Use _take to get writable data from the adapter.
2086         Precalc packet duration.
2087         Handle disconts.
2088         Forward _push to upstream.
2089         Post error messages when something goes wrong.
2090         Remove old code in amrnbparse.
2091         Don't ignore query results from upstream.
2093 2006-03-02  Michael Smith  <msmith@fluendo.com>
2095         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
2096           The AMR encoder writes into the audio buffers it processes, so
2097           use gst_buffer_make_writable() on buffers we might (they go through
2098           an adapter, so there can be copying going on later anyway) be
2099           encoding.
2101 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
2103         Patch by: Jens Granseuer
2105         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_pad_added),
2106         (gst_mpeg_parse_handle_src_query):
2107           Declare variables at the beginning of a block and make
2108           gcc-2.9x happy (fixes #328957)
2110 2006-03-01  Tim-Philipp Müller  <tim at centricular dot net>
2112         Patch by: Fabrizio Gennari
2114         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_handle_data):
2115           Read packet size, sequence and padsize in right order again
2116           (fixes #332796)
2118 2006-02-28  Edward Hervey  <edward@fluendo.com>
2120         * gst/iec958/ac3iec.c:
2121         Set a proper klass (Codec/Muxer/Audio) for the ElementDetails.
2123 2006-02-27  Jan Schmidt  <thaytan@mad.scientist.com>
2125         * configure.ac:
2126           Make the id3tag and mad checks check for both a header and the
2127           appropriate library if the pkg-config is missing. (Closes #331842)
2128           Split the id3tag and mad checks into 2 pieces. Sometime soon I might
2129           do the same for the plugins themselves.
2130           
2131 2006-02-27  Luca Ognibene  <luogni at tin dot it>
2133         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2135         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
2136         (gst_mpeg2dec_reset), (gst_mpeg2dec_chain):
2137         * ext/mpeg2dec/gstmpeg2dec.h:
2138           Don't treat STATE_INVALID as fatal error; throw an error
2139           only after five consecutive decoding errors. Makes decoding
2140           mpeg streams more robust and fixes playback of joined clips
2141           (#300682).
2143 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
2145         * ext/dvdnav/dvdnavsrc.h:
2146           Oops. forgot to add this one.
2148 2006-02-26  Julien MOUTTE  <julien@moutte.net>
2150         * ext/Makefile.am: Fix dist-check.
2152 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
2154         * configure.ac:
2155           Disable dvdnavsrc for now.
2157 2006-02-26  Tim-Philipp Müller  <tim at centricular dot net>
2159         * configure.ac:
2160         * ext/Makefile.am:
2161         * ext/dvdnav/Makefile.am:
2162         * ext/dvdnav/dvdnavsrc.c: (gst_dvd_nav_src_base_init),
2163         (gst_dvd_nav_src_class_init), (gst_dvd_nav_src_check_get_range),
2164         (gst_dvd_nav_src_init), (gst_dvd_nav_src_finalize),
2165         (gst_dvd_nav_src_is_open), (gst_dvd_nav_src_set_property),
2166         (gst_dvd_nav_src_get_property), (gst_dvd_nav_src_set_clock),
2167         (gst_dvd_nav_src_tca_seek), (gst_dvd_nav_src_update_streaminfo),
2168         (gst_dvd_nav_src_set_domain), (gst_dvd_nav_src_update_highlight),
2169         (gst_dvd_nav_src_user_op), (dvdnav_get_event_name),
2170         (dvdnav_get_read_domain_name), (gst_dvd_nav_src_print_event),
2171         (gst_dvd_nav_src_make_dvd_event),
2172         (gst_dvd_nav_src_structure_set_uint64),
2173         (gst_dvd_nav_src_push_dvd_nav_packet_event),
2174         (gst_dvd_nav_src_push_clut_change_event), (read_vts_info),
2175         (gst_dvd_nav_src_push_titlelang_event),
2176         (gst_dvd_nav_src_process_next_block), (gst_dvd_nav_src_create),
2177         (gst_dvd_nav_src_start), (gst_dvd_nav_src_stop),
2178         (gst_dvd_nav_src_handle_navigation_event),
2179         (gst_dvd_nav_src_handle_seek_event), (gst_dvd_nav_src_src_event),
2180         (gst_dvd_nav_src_query_position), (gst_dvd_nav_src_query_duration),
2181         (gst_dvd_nav_src_query), (gst_dvd_nav_src_uri_get_type),
2182         (gst_dvd_nav_src_uri_get_protocols), (gst_dvd_nav_src_uri_get_uri),
2183         (gst_dvd_nav_src_uri_set_uri), (gst_dvd_nav_src_uri_handler_init),
2184         (gst_dvd_nav_src_do_init), (plugin_init):
2185           dvdnavsrc ported to 0.10, for the most part at least. Not quite
2186           ready for prime time yet though.
2188 2006-02-22  Tim-Philipp Müller  <tim at centricular dot net>
2190         * configure.ac:
2191         * gst/dvdsub/Makefile.am:
2192         * gst/dvdsub/gstdvdsubdec.c: (gst_dvd_sub_dec_base_init),
2193         (gst_dvd_sub_dec_class_init), (gst_dvd_sub_dec_init),
2194         (gst_dvd_sub_dec_finalize), (gst_dvd_sub_dec_src_event),
2195         (gst_dvd_sub_dec_get_event_delay), (gst_dvd_sub_dec_parse_subpic),
2196         (gst_get_nibble), (gst_setup_palette), (gst_get_rle_code),
2197         (gst_draw_rle_line), (gst_dvd_sub_dec_merge_title),
2198         (gst_send_empty_fill), (gst_send_subtitle_frame),
2199         (gst_dvd_sub_dec_advance_time), (gst_dvd_sub_dec_chain),
2200         (gst_dvd_sub_dec_sink_event), (gst_dvd_sub_dec_handle_dvd_event),
2201         (plugin_init):
2202         * gst/dvdsub/gstdvdsubdec.h:
2203           Port dvdsubdec to 0.10
2205 2006-02-21  Jan Schmidt  <thaytan@mad.scientist.com>
2207         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_plugin_init):
2208          Push the rank up to SECONDARY+1 so that dvddemux is preferred over
2209          mpegdemux for MPEG-2 video streams.
2211 2006-02-20  Jan Schmidt  <thaytan@mad.scientist.com>
2213         * configure.ac:
2214           Bump nano back to CVS
2216 === release 0.10.2 ===
2218 2006-02-20  Jan Schmidt <thaytan@mad.scientist.com>
2220         * configure.ac:
2221           releasing 0.10.2, "Season to Taste"
2223 2006-02-19  Jan Schmidt <thaytan@mad.scientist.com>
2225         * configure.ac:
2226           releasing 0.10.1.3 prelease for 0.10.2
2228 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
2230         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_sink_event):
2231           In sink event handler, release object lock again
2232           _before_ sending EOS event downstream (#313838).
2234 2006-02-17  Christian Schaller  <christian@fluendo.com>
2235         
2236         * gst/asfdemux/gstasf.c: (plugin_init):
2237           Set asfdemux rank to secondary (fixes #331579).
2239 2006-02-17  Jan Schmidt <thaytan@mad.scientist.com>
2241         * configure.ac:
2242           releasing 0.10.1.2 prelease for 0.10.2
2244 2006-02-17  Tim-Philipp Müller  <tim at centricular dot net>
2246         * ext/mpeg2dec/gstmpeg2dec.c: (crop_copy_i420_buffer),
2247         (crop_copy_i422_buffer), (crop_buffer):
2248           When we need to crop the output buffer, make sure we
2249           create a buffer of the right size and respect the implicit
2250           striding used for I420 elsewhere in GStreamer (#331301).
2252 2006-02-17  Edward Hervey  <edward@fluendo.com>
2254         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_stream):
2255         Do not error out on non-recognized streams. Ignore them and allow
2256         playback of the other streams.
2258 2006-02-17  Jan Schmidt  <thaytan@mad.scientist.com>
2260         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
2261         Add a small sanity check for LPCM reading.
2263 2006-02-17  Edward Hervey  <edward@fluendo.com>
2265         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_file):
2266         Take into account the file properties preroll value for
2267         timestamping/newsegment. It's weird this value was commented out.
2269 2006-02-16  Wim Taymans  <wim@fluendo.com>
2271         * gst/asfdemux/Makefile.am:
2272         More asf makefile fixing.
2274 2006-02-16  Wim Taymans  <wim@fluendo.com>
2276         * ext/lame/gstlame.c: (gst_lame_init), (gst_lame_chain),
2277         (gst_lame_change_state):
2278         Fix up lame a bit.
2279         Apply patch #319782 by Gautier Portet.
2281 2006-02-16  Edward Hervey  <edward@fluendo.com>
2283         * gst/asfdemux/Makefile.am:
2284         But we do need to link against the riff libraryr.
2286 2006-02-16  Edward Hervey  <edward@fluendo.com>
2288         * gst/asfdemux/Makefile.am:
2289         We don't want asfmux.c yet.
2291 2006-02-16  Jan Schmidt  <thaytan@mad.scientist.com>
2293         * ext/mad/gstmad.c: (gst_mad_init), (scale), (gst_mad_update_info),
2294         (gst_mad_sink_event), (gst_mad_check_caps_reset), (gst_mad_chain),
2295         (gst_mad_change_state):
2296           Port fixes for bugs 314771, 308772, 140237, and 302625
2297           from 0.8 (Patch by Jonathan Matthew, Fixes #329575)
2298           Use GST_EVENT_FLUSH_STOP to clear data from the current input
2299           buffer, to avoid using it for any future decoding.
2301 2006-02-15  Tim-Philipp Müller  <tim at centricular dot net>
2303         * configure.ac:
2304         * gst/asfdemux/asfheaders.c: (gst_asf_identify_guid),
2305         (gst_asf_get_guid_nick):
2306         * gst/asfdemux/asfheaders.h:
2307         * gst/asfdemux/gstasf.c: (plugin_init):
2308         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_base_init),
2309         (gst_asf_demux_class_init), (gst_asf_demux_init),
2310         (gst_asf_demux_sink_event), (gst_asf_demux_handle_seek_event),
2311         (gst_asf_demux_handle_src_event),
2312         (gst_asf_demux_get_current_offset), (gst_asf_demux_chain),
2313         (gst_asf_demux_skip_bytes), (gst_asf_demux_identify_guid),
2314         (gst_asf_demux_get_uint8), (gst_asf_demux_get_uint16),
2315         (gst_asf_demux_get_uint32), (gst_asf_demux_get_uint64),
2316         (gst_asf_demux_get_var_length), (gst_asf_demux_get_buffer),
2317         (gst_asf_demux_get_bytes), (gst_asf_demux_get_string),
2318         (gst_asf_demux_get_guid), (gst_asf_demux_get_obj_file),
2319         (gst_asf_demux_get_bitrate_record),
2320         (gst_asf_demux_get_obj_comment), (gst_asf_demux_get_obj_header),
2321         (gst_asf_demux_get_obj_header_ext), (gst_asf_demux_get_obj_stream),
2322         (gst_asf_demux_get_replicated_data), (gst_asf_demux_get_obj_data),
2323         (gst_asf_demux_get_obj_data_correction),
2324         (gst_asf_demux_get_stream_audio),
2325         (gst_asf_demux_get_stream_correction),
2326         (gst_asf_demux_get_stream_video),
2327         (gst_asf_demux_get_stream_video_format),
2328         (gst_asf_demux_get_stream), (gst_asf_demux_setup_pad),
2329         (gst_asf_demux_add_audio_stream), (gst_asf_demux_add_video_stream),
2330         (gst_asf_demux_process_stream),
2331         (gst_asf_demux_get_gst_tag_from_tag_name),
2332         (gst_asf_demux_commit_taglist),
2333         (gst_asf_demux_process_ext_content_desc),
2334         (gst_asf_demux_get_object_header), (gst_asf_demux_process_data),
2335         (gst_asf_demux_process_header), (gst_asf_demux_process_file),
2336         (gst_asf_demux_process_comment),
2337         (gst_asf_demux_process_bitrate_props_object),
2338         (gst_asf_demux_process_header_ext), (gst_asf_demux_process_object),
2339         (gst_asf_demux_descramble_segment),
2340         (gst_asf_demux_element_send_event),
2341         (gst_asf_demux_send_event_unlocked), (gst_asf_demux_push_buffer),
2342         (gst_asf_demux_process_chunk), (gst_asf_demux_process_segment),
2343         (gst_asf_demux_handle_data), (gst_asf_demux_parse_data),
2344         (gst_asf_demux_get_src_query_types),
2345         (gst_asf_demux_handle_src_query), (gst_asf_demux_change_state):
2346         * gst/asfdemux/gstasfdemux.h:
2347           asfdemux ported to 0.10. Does still need a bit of work (seems like
2348           there's something funky going on when timestamping video frames).
2349           The seeking code is likely to make Wim cry, but hey, at least it
2350           compiles.
2352 2006-02-15  Wim Taymans  <wim@fluendo.com>
2354         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_setcaps),
2355         (gst_amrnbdec_chain), (gst_amrnbdec_state_change):
2356         Some more comments.
2358         * ext/mpeg2dec/gstmpeg2dec.c: (crop_buffer), (handle_slice):
2359         Applied patch from Fabrizio Gennari, fixes #330844.
2361 2006-02-14  Tim-Philipp Müller  <tim at centricular dot net>
2363         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_init),
2364         (gst_dvd_read_src_class_init), (gst_dvd_read_src_start),
2365         (gst_dvd_read_src_stop), (gst_dvd_read_src_goto_title),
2366         (gst_dvd_read_src_set_property), (gst_dvd_read_src_get_property),
2367         (gst_dvd_read_src_uri_get_uri), (gst_dvd_read_src_uri_set_uri):
2368         * ext/dvdread/dvdreadsrc.h:
2369           Let's try to play the title the user set via the URI handler or
2370           via properties instead of always playing the first title. Also,
2371           Also, count title/chapter/angle number in URI and properties
2372           from 1 rather than 0.
2374 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
2376         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_class_init),
2377         (gst_dvd_read_src_get_size), (gst_dvd_read_src_do_seek),
2378         (gst_dvd_read_src_do_duration_query):
2379           Don't implement GstBaseSrc::get_size or GstBaseSrc::is_seekable,
2380           otherwise GstBaseSrc will think we can operate pull_range based,
2381           which we don't really, and typefinding will fail miserably.
2382           Also, make seeking work somewhat (only works with flumpegdemux
2383           at the moment, mpegstream needs fixing for that first).
2385 2006-02-13  Tim-Philipp Müller  <tim at centricular dot net>
2387         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_read),
2388         (gst_dvd_read_src_create), (gst_dvd_read_src_src_event):
2389           Only allocate buffer once we know exactly how much we need,
2390           rather than gratuitously allocating 2MB-buffers all the time
2391           even if we usually need much less than that. Also, demote
2392           a debug message from DEBUG to LOG level.
2394 2006-02-10  Tim-Philipp Müller  <tim at centricular dot net>
2396         * ext/dvdread/dvdreadsrc.c: (gst_dvd_read_src_class_init),
2397         (gst_dvd_read_src_seekable), (gst_dvd_read_src_get_size),
2398         (gst_dvd_read_src_do_seek), (gst_dvd_read_src_do_duration_query),
2399         (gst_dvd_read_src_do_position_query):
2400           Add some more debugging and fix duration query in BYTES.
2402 2006-02-09  Tim-Philipp Müller  <tim at centricular dot net>
2404         * configure.ac:
2405         * ext/Makefile.am:
2406         * ext/dvdread/Makefile.am:
2407         * ext/dvdread/dvdreadsrc.c:
2408         * ext/dvdread/dvdreadsrc.h:
2409           Half-baked port to 0.10. Needs some love
2410           in the seeking department, but at least
2411           it does something.
2413         * ext/dvdread/stream_labels.c:
2414         * ext/dvdread/stream_labels.h:
2415           Remove these (we use ISO-639 language codes internally; applications
2416           that want to translate those into language names for display to the
2417           user should rely on the iso-codes package for that).
2419 2006-02-06  Wim Taymans  <wim@fluendo.com>
2421         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_init),
2422         (gst_amrnbdec_setcaps), (gst_amrnbdec_event), (gst_amrnbdec_chain),
2423         (gst_amrnbdec_state_change):
2424         * ext/amrnb/amrnbdec.h:
2425         Fix amrnbdec, handle events, take copy from adapter since the decoder
2426         apparently writes in the source data.
2427         Use some _scale_int, and precalc duration.
2428         Fix some leaks, post ERROR messages.
2430 2006-02-04  Tim-Philipp Müller  <tim at centricular dot net>
2432         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
2433           One source pad not being linked is not an error condition when we're
2434           still parsing the header. In this case (e.g. where we don't have a
2435           suitable decoder installed) just pretend everything is fine, so that
2436           the demuxer will actually go on to signal no-more-pads when done
2437           parsing the header, otherwise  decodebin/playbin will never post the
2438           appropriate error message if decoders are not available.
2440 2006-02-03  Edgard Lima <edgard.lima@indt.org.br>
2442         * ext/mad/gstid3tag.c:
2443         * gst/realmedia/rmdemux.c:
2444         Just make it compile with --disable-gst-debug.
2446 2006-01-31  Jan Schmidt  <thaytan@mad.scientist.com>
2448         * ext/mad/gstmad.c: (gst_mad_convert_src), (scale),
2449         (gst_mad_check_caps_reset), (gst_mad_chain):
2450           Merge patch from Radoslaw Szkodzinski (bug 326734)
2452 2006-01-31  Stefan Kost  <ensonic@users.sf.net>
2454         * ext/mad/gstid3tag.c: (tag_list_to_id3_tag_foreach),
2455         (gst_id3_tag_get_tag_to_render), (gst_id3_tag_sink_event),
2456         (gst_id3_tag_src_link), (gst_id3_tag_send_tag_event),
2457         (gst_id3_tag_chain):
2458           fixing Gdate handling
2459           enabling mux/demux mode switching
2460           adding better debug output
2462 2006-01-30  Tim-Philipp Müller  <tim at centricular dot net>
2464         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_buffer):
2465           If we haven't set caps on a source pad yet, the caps on the
2466           pad are NULL, not un-fixed. Set caps on outgoing buffers.
2468 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
2470         * ext/lame/gstlame.c: (gst_lame_finalize), (gst_lame_class_init),
2471         (gst_lame_init), (add_one_tag), (gst_lame_set_metadata):
2472         * ext/lame/gstlame.h:
2473           Contrary to what the const char in the lame API might suggest,
2474           lame expects us to keep the strings we pass to id3tag_set_foo()
2475           around; it doesn't free them either though, so we have to store
2476           them somewhere and free them later when we can be sure lame
2477           doesn't need them any longer.
2479 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
2481         * ext/lame/gstlame.c: (add_one_tag):
2482           Fix handling of GST_TAG_DATE (#311679), don't pass an
2483           uninitialised string pointer to lame if we don't know
2484           how to handle the tag type, and fix minor memory leak.
2486 2006-01-23  Tim-Philipp Müller  <tim at centricular dot net>
2488         * ext/mad/gstmad.c: (gst_mad_chain):
2489           Fix debug message.
2491 2006-01-22  Martin Soto  <martinsoto@users.sourceforge.net>
2493         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event): 
2494         Erase spurious call to gst_segment_set_newsegment.
2495         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event): Call
2496         the superclass method when handling NEWSEGMENT events.
2497         (gst_dvd_demux_handle_dvd_event): Get rid of dvd-audio-shutdown
2498         and dvd-audio-restart event handling. There are currently less
2499         hackish ways of handling the sparse audio stream problem.
2501 2006-01-20  Thomas Vander Stichele  <thomas at apestaart dot org>
2503         * ext/dvdnav/dvdnavsrc.c: (if):
2504         * ext/dvdread/stream_labels.c:
2505         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_process_segment):
2506         * gst/realmedia/rmdemux.c: (gst_rmdemux_loop):
2507           fix up error domains, error strings, and use of translation
2508         * po/POTFILES.in:
2509           fix up this file, even though none of them are actually marked
2510           for build yet.
2512 2006-01-19  Martin Soto  <martinsoto@users.sourceforge.net>
2514         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse): 
2515         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset) 
2516         (gst_mpeg_parse_process_event, gst_mpeg_parse_parse_packhead) 
2517         (gst_mpeg_parse_change_state): 
2518         Make timestamp adjustment somewhat milder. Actual timestamps are
2519         now sent unmodified unless an actual gap is found in the
2520         stream. This should fix time display when playing most MPEG
2521         files.
2523 2006-01-18  Edward Hervey  <edward@fluendo.com>
2525         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_subbuffer): 
2526         tss tss... always set caps on outgoing buffer.
2528 2006-01-13  Thomas Vander Stichele  <thomas at apestaart dot org>
2530         * configure.ac:
2531           back to HEAD
2533 === release 0.10.1 ===
2535 2006-01-13  Thomas Vander Stichele <thomas at apestaart dot org>
2537         * configure.ac:
2538           releasing 0.10.1, "Peng"
2540 2006-01-11  Thomas Vander Stichele  <thomas at apestaart dot org>
2542         * configure.ac:
2543           prerelease
2545 2006-01-10  Tim-Philipp Müller  <tim at centricular dot net>
2547         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_query):
2548         * ext/mad/gstid3tag.c: (gst_id3_tag_src_query):
2549         * ext/mad/gstmad.c: (gst_mad_src_query):
2550         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_src_query):
2551         * ext/sidplay/gstsiddec.cc:
2552         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_handle_src_query):
2553         * gst/realmedia/rmdemux.c: (gst_rmdemux_src_query):
2554           Pass unhandled queries upstream (useful e.g. for SEEKING query)
2555           (fixes #325652; based on patch by: Philippe); make rmdemux return
2556           FALSE for position queries, instead of setting -1 as value and
2557           returning TRUE.
2559 2006-01-05  Martin Soto  <martinsoto@users.sourceforge.net>
2561         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts) 
2562         (gst_mpeg_parse_process_event, gst_mpeg_parse_pad_added): Don't
2563         rewrite timestamps in the case segments are being set from
2564         upstream, but use timestamps unmodified. Also send proper position
2565         values. This allows for correct time display and makes queries
2566         work in sink elements.
2568         * gst/mpegstream/gstdvddemux.h: 
2569         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
2570         (gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer):
2571         Rename flush_filter to segment_filter, which is better represents
2572         what the arreibute does.
2574         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event):
2575         Activate segment filtering when a timestamp discontinuity is seen.
2577 2006-01-04  Tim-Philipp Müller  <tim at centricular dot net>
2579         * ext/mad/gstmad.c: (gst_mad_chain):
2580           Don't forget that we need to send out a newsegment event after a
2581           restart even if we don't have enough data to decode a frame right
2582           now.
2584 2005-12-31  Martin Soto  <martinsoto@users.sourceforge.net>
2586         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
2587         Use the new "audio-shutdown" and "audio-restart" DVD events
2588         instead of the "spu-still-frame" event to shutdown and restart
2589         the audio pipeline.
2591         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts):
2592         Check for cases where the segment-based adjustment calculation
2593         would produce negative values (which result in an overflow) and
2594         return GST_CLOCK_TIME_NONE instead.
2596         * gst/mpegstream/gstdvddemux.h: 
2597         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
2598         (gst_dvd_demux_process_event, gst_dvd_demux_send_subbuffer): 
2599         Add a mechanism to discard audio buffers with timestamps outside
2600         the currently set segment. This was causing (sometimes serious)
2601         synchronization problems after seeking in DVDs with LPCM audio,
2602         since VOBUs usually contain audio material that lies outside the
2603         timestamp range specified by the header.
2605 2005-12-30  Jan Schmidt  <thaytan@mad.scientist.com>
2607         * ext/mad/gstid3tag.c: (gst_id3_tag_get_type):
2608           Remove lingering reference to GstID3Demux
2610         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_parse_pes):
2611           Don't output debug saying padding streams are unknown type,
2612           because they're not
2614 2005-12-27  Martin Soto  <martinsoto@users.sourceforge.net>
2616         * gst/mpegstream/gstdvddemux.c (AUDIO_CAPS) 
2617         (gst_dvd_demux_get_audio_stream): Use audio/x-lpcm as mimetype for
2618         LPCM.
2620         * gstmpegdemux.h: 
2621         * gstmpegdemux.c (gst_mpeg_demux_get_video_stream) 
2622         (gst_mpeg_demux_get_audio_stream): 
2623         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_get_video_stream) 
2624         (gst_dvd_demux_get_audio_stream) 
2625         (gst_dvd_demux_get_subpicture_stream) 
2626         (gst_dvd_demux_send_subbuffer):
2627         Send current* pad buffers with appropriate caps.
2629 2005-12-26  Martin Soto  <martinsoto@users.sourceforge.net>
2631         * gst/iec958/ac3iec.h:
2632         * gst/iec958/ac3iec.c:
2633         (NORMAL_CAPS_DEF, RAW_AUDIO_CAPS_DEF, ac3iec_class_init)
2634         (ac3iec_init, ac3iec_set_property, ac3iec_get_property): Add a
2635         raw-audio property to ac3iec958 that allows setting the source pad
2636         caps to raw audio instead of audio/x-iec958. This makes it
2637         possible to use ac3iec958 together with the normal alsasink
2638         element to drive an external receiver that autodetects AC3
2639         content.
2640         API addition: AC3IEC::raw-audio property
2642 2005-12-23  Michael Smith  <msmith@fluendo.com>
2644         * gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_setcaps),
2645         (ac3iec_chain_dvd):
2646         * gst/iec958/ac3iec.h:
2647           Accept audio/x-ac3 and audio/ac3 to ac3iec958 element.
2649 2005-12-21  Tim-Philipp Müller  <tim at centricular dot net>
2651         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_src_event):
2652           When getting a seek event, first check if the upstream element
2653           can handle it and only do our own seek stuff when it can't
2654           (should fix #322856).
2656 2005-12-21  Josef Zlomek  <josef dot zlomek at xeris dot cz>
2658         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2660         * ext/mpeg2dec/gstmpeg2dec.c: (normal_seek):
2661           Really convert to BYTES format when we want to convert
2662           to bytes (use right variable; fixes #322856).
2664 2005-12-19  Martin Soto  <martinsoto@users.sourceforge.net>
2666         Big mpegparse clean up, second round:
2668         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
2669         Send and EOS event down the audio pipeline when an still frame
2670         event arrives. This prevents the pipeline from locking when a
2671         still menu comes directly after a flush.
2673         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset): 
2674         Don't send a newsegment in reset.
2675         (gst_mpeg_parse_adjust_ts): Check for invalid timestamps.
2676         (gst_mpeg_parse_handle_newsegment, gst_mpeg_parse_process_event):
2677         Move the code of handle_newsegment to process_event. Send a
2678         NEWSEGMENT after FLUSH_STOP.
2679         (gst_mpeg_parse_change_state): Send a NEWSEGMENT right after
2680         moving to PAUSED.
2682         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event) 
2683         (gst_mpeg_demux_class_init): Don't override send_event.
2684         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_init) 
2685         (gst_mpeg_demux_send_event, gst_mpeg_demux_send_subbuffer) 
2686         (gst_mpeg_demux_reset):
2687         * gst/mpegstream/gstmpegdemux.h:  Get rid of just_flushed
2688         attribute.
2690         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event):
2691         Reset the mpegparse element after a flush.
2693         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment): 
2694         Don't forward events.
2695         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_process_event): 
2696         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
2697         handle_newsegment is not a virtual method anymore.
2699         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_send_newsegment) 
2700         (gst_mpeg_parse_reset, gst_mpeg_parse_class_init): 
2701         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): Get
2702         rid of send_newsegment virtual method.
2704         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event): Only
2705         handle DVD events and call the superclass method for other event
2706         types.
2707         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event): Don't
2708         override process_event anymore.
2709         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_event)
2710         (gst_mpeg_parse_process_event): Move actual event processing to
2711         process event so that subclasses can properly override or extend
2712         it.
2713         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass):
2714         Eliminate time parameter in process event.
2716         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_init) 
2717         (gst_mpeg_demux_parse_packet, gst_mpeg_demux_parse_pes) 
2718         (gst_mpeg_demux_send_subbuffer): 
2719         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
2720         (gst_mpeg_parse_parse_packhead, gst_mpeg_parse_event) 
2721         (gst_mpeg_parse_chain): Use the new adjust_ts method instead of
2722         adding the value of the adjust attribute.
2723         * gst/mpegstream/gstmpegdemux.h (struct _GstMPEGVideoStream): Get
2724         rid of the adjust attribute. Now all timestamp adjustments are
2725         performed by mpegparse using the current segment.
2726         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_adjust_ts)
2727         (gst_mpeg_parse_class_init): Implement the adjust_ts method based
2728         on the adjust attribute for SCR values and the current segment.
2729         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): New
2730         adjust_ts virtual method to adjust timestamps for outgoing
2731         buffers.
2732         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_newsegment) 
2733         (gst_mpeg_demux_parse_packet): Don't override send_newsegment.
2734         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init) 
2735         (gst_dvd_demux_handle_newsegment): Don't override
2736         handle_newsegment.
2737         (gst_dvd_demux_process_event, gst_dvd_demux_handle_dvd_event):
2738         Check for DVD events in process_event instead of
2739         handle_dvd_event.
2741         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
2742         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment) 
2743         (gst_mpeg_parse_send_newsegment, gst_mpeg_parse_send_event): 
2744         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_process_event) 
2745         (gst_mpeg_demux_send_event): 
2746         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event) 
2747         (gst_dvd_demux_handle_dvd_event): 
2748         Eliminate the time parameter in send_event.
2750 2005-12-18  Jan Schmidt  <thaytan@mad.scientist.com>
2752         * ext/mad/gstid3tag.c: (gst_id3_tag_do_typefind),
2753         (gst_id3_tag_do_caps_nego), (gst_id3_tag_chain), (plugin_init):
2754           Fix typefinding in id3demux, and then remove it in favour
2755           of the new LGPL id3demux in gst-plugins-good
2756         * ext/mad/gstmad.c: (gst_mad_dispose):
2757           dispose can run more than once.
2759 2005-12-16  Stefan Kost  <ensonic@users.sf.net>
2761         * gst/asfdemux/gstasfmux.c: (gst_asfmux_file_start):
2762           change some char* into char[]
2764 2005-12-15  Edward Hervey  <edward@fluendo.com>
2766         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream):
2767         Remove memleak from unused GstRMDemuxStream
2769 2005-12-12  Michael Smith  <msmith@fluendo.com>
2771         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list),
2772         (gst_id3_tag_do_typefind):
2773           Use the correct function to free typefind factory list.
2775 2005-12-09  Tim-Philipp Müller  <tim at centricular dot net>
2777         * ext/mad/gstmad.c: (gst_mad_src_query):
2778           For position and duration queries in TIME format, try the peer
2779           first (might be a demuxer).
2781 2005-12-08  Martin Soto  <martinsoto@users.sourceforge.net>
2783         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_newsegment):
2784         Properly handle non contiguous VOBUs by adding the segment accum
2785         field to the adjust value.
2787         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init)
2788         (gst_dvd_demux_init, gst_dvd_demux_handle_newsegment): Extend
2789         handle_newsegment to prevent sending actual newsegment events and
2790         use tiemstamp rewriting instead.
2791         (gst_dvd_demux_handle_dvd_event): Don't send a newsegment after
2792         dvd-lang-codes.
2793         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_newsegment) 
2794         (gst_mpeg_parse_event): 
2795         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParseClass): 
2796         Add a new parameter to handle_newsegment to allow controlling
2797         whether newsegment events are forwarded or not.
2799         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
2800         (gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer) 
2801         (gst_dvd_demux_reset): 
2802         last_end_ptm and discont_time aren't necessary anymore, since
2803         timestamp adjustment is now replaced by newsegment events.
2804         (gst_dvd_demux_init): Prevent MPEGParse from adjusting
2805         timestamps.
2806         * gst/mpegstream/gstdvddemux.h: 
2807         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event):
2808         Don't handle dvd-nav-packet events anymore, since the are now
2809         replaced by standard newsegment events.
2811         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_init) 
2812         (gst_dvd_demux_handle_dvd_event, gst_dvd_demux_send_subbuffer) 
2813         (gst_dvd_demux_change_state): 
2814         * gst/mpegstream/gstdvddemux.h: 
2815         Get rid of the ignore_next_newmedia_discont hack.
2816         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_class_init) 
2817         (gst_dvd_demux_handle_newsegment): 
2818         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_class_init) 
2819         (gst_mpeg_demux_handle_newsegment): Don't override
2820         handle_newsegment anymore. It was only necessary to handle
2821         NEWMEDIA events.
2823         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_process_event) 
2824         (gst_dvd_demux_handle_dvd_event, gst_dvd_demux_set_cur_audio) 
2825         (gst_dvd_demux_set_cur_subpicture):
2826         Reactivate handling of DVD events.
2828         * gst/mpegstream/gstmpegparse.c (normal_seek) 
2829         (gst_mpeg_parse_handle_src_event) 
2830         (gst_mpeg_parse_handle_src_query): 
2831         First attempt at reenabling seek.
2833         * gst/mpegstream/gstmpegparse.h: 
2834         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
2835         (gst_mpeg_parse_update_streaminfo) 
2836         (gst_mpeg_parse_get_rate) 
2837         (gst_mpeg_parse_convert, gst_mpeg_parse_get_src_query_types) 
2838         (gst_mpeg_parse_handle_src_query): 
2839         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_new_output_pad): 
2840         Make queries work again.
2842         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_reset) 
2843         (gst_mpeg_parse_handle_newsegment) 
2844         (gst_mpeg_parse_send_newsegment, gst_mpeg_parse_pad_added) 
2845         (gst_mpeg_parse_chain, gst_mpeg_parse_handle_src_event): 
2846         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
2847         Get rid of the newsegment_pending attribute, and rely instead on
2848         proper timestamp adjustment.
2850         * gst/mpegstream/gstmpegparse.c
2851         (gst_mpeg_parse_get_src_event_masks): Erase.
2853         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init):
2854         Initialize fields before creating pads to prevent the pad creation
2855         callback from failing.
2856         (gst_mpeg_parse_reset): Initialize new fields, and change
2857         initialization order to match the order in the structure.
2858         (gst_mpeg_parse_handle_newsegment): Forward new segment events
2859         whenever possible, and update the current segment.
2860         (gst_mpeg_parse_send_newsegment): Update the current segment and
2861         pending_newsegment.
2862         (gst_mpeg_parse_pad_added): Use the current segment to send
2863         newsegment events to new pads.
2864         (gst_mpeg_parse_chain): Properly add adjust time to sent buffers
2865         and events. Properly update newsegment_pending.
2866         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
2867         New fields do_adjust and current_segment.
2869         * gst/mpegstream/gstmpegdemux.c: 
2870         * gst/mpegstream/gstdvddemux.c: 
2871         * gst/mpegstream/gstmpegparse.h: 
2872         Rename handle_discont virtual method to handle_newsegment. Erase
2873         some (already commented out support) for old NEW_MEDIA events.
2875         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
2876         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
2877         (gst_mpeg_parse_reset, gst_mpeg_parse_handle_discont) 
2878         (gst_mpeg_parse_pad_added, gst_mpeg_parse_parse_packhead) 
2879         (gst_mpeg_parse_event, gst_mpeg_parse_chain): 
2880         Erase the "pending_scr" field, and replace it by a slightly
2881         different handling of the current SCR. Document code blocks in
2882         parse_packhead and chain.
2884 2005-12-07  Edward Hervey  <edward@fluendo.com>
2886         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
2887         g_warning() are only for really fatal warnings. If we can't decode a
2888         tag, just ignore that tag and do a GST_WARNING.
2890 2005-12-06  Thomas Vander Stichele  <thomas at apestaart dot org>
2892         * ext/a52dec/gsta52dec.h:
2893         * ext/dvdread/dvdreadsrc.h:
2894         * ext/lame/gstlame.h:
2895         * ext/mad/gstid3tag.c:
2896         * ext/mad/gstmad.c: (gst_mad_update_info):
2897         * ext/mad/gstmad.h:
2898         * ext/mpeg2dec/gstmpeg2dec.h:
2899         * ext/sidplay/gstsiddec.h:
2900         * gst/ac3parse/gstac3parse.c:
2901         * gst/ac3parse/gstac3parse.h:
2902         * gst/asfdemux/gstasfdemux.c:
2903         * gst/asfdemux/gstasfdemux.h:
2904         * gst/iec958/ac3iec.h:
2905         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_chain):
2906         * gst/mpegaudioparse/gstmpegaudioparse.h:
2907         * gst/mpegstream/gstdvddemux.h:
2908         * gst/mpegstream/gstmpegclock.h:
2909         * gst/mpegstream/gstmpegdemux.h:
2910         * gst/mpegstream/gstmpegpacketize.h:
2911         * gst/mpegstream/gstmpegparse.c:
2912         * gst/mpegstream/gstmpegparse.h:
2913         * gst/mpegstream/gstrfc2250enc.c:
2914         * gst/mpegstream/gstrfc2250enc.h:
2915         * gst/realmedia/rmdemux.c:
2916         * gst/realmedia/rmdemux.h:
2917         * gst/synaesthesia/synaescope.c:
2918           expand tabs
2920 === release 0.10.0 ===
2922 2005-12-05   <thomas (at) apestaart (dot) org>
2924         * configure.ac:
2925           releasing 0.10.0, "Brie"
2927 2005-12-05  Andy Wingo  <wingo@pobox.com>
2929         * ext/a52dec/gsta52dec.c: (gst_a52dec_push):
2930         * ext/mad/gstmad.c: (gst_mad_chain):
2931         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_alloc_buffer):
2932         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_raw):
2933         * gst/iec958/ac3iec.c: (ac3iec_chain_raw):
2934         * gst/realmedia/rmdemux.c: (gst_rmdemux_add_stream),
2935         (gst_rmdemux_parse_packet): Update for alloc_buffer changes.
2937 2005-12-05  Andy Wingo  <wingo@pobox.com>
2939         * ext/mad/gstid3tag.c (plugin_init): Remove id3tag -- there's just
2940         id3demux and id3mux now. Fixes #323199.
2942 2005-12-02  Thomas Vander Stichele  <thomas (at) apestaart (dot) org>
2944         * ext/amrnb/Makefile.am:
2945         * gst/realmedia/Makefile.am:
2946           fix silly Makefile.am bug so they link correctly again
2948 === release 0.9.7 ===
2950 2005-12-01   <thomas (at) apestaart (dot) org>
2952         * configure.ac:
2953           releasing 0.9.7, "Canis Meus Naso Non Habet"
2955 2005-12-01  Thomas Vander Stichele  <thomas at apestaart dot org>
2957         * ext/amrnb/Makefile.am:
2958         * gst/realmedia/Makefile.am:
2959           Don't know how these escaped my eye before.  Fix link flags.
2961 2005-11-29  Michal Benes  <michal dot benes at xeris dot cz>
2963         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
2965         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_send_event):
2966         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_send_newsegment),
2967         (gst_mpeg_parse_send_event):
2968           Ref events before sending them to multiple pads, after all
2969           gst_pad_send_event() takes ownership of events. Don't leak
2970           events that have not been handled (fixes #322745).
2972 2005-11-28  Martin Soto  <martinsoto@users.sourceforge.net>
2974         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event)
2975         (gst_dvd_demux_handle_dvd_event): Erase code to prevent mpegparse
2976         from making timestamp adjustments. This will have to be re-added
2977         in some form in the near future, but in order to do that, some nav
2978         packet parsing will be necessary in mpegdemux.
2979         * gst/mpegstream/gstmpegparse.h (struct _GstMPEGParse):
2980         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_init) 
2981         (g_value_set_int, gst_mpeg_parse_set_property)
2982         Get rid of do_adjust and use_adjust. Rename max_discont to
2983         max_src_gap.
2984         (gst_mpeg_parse_parse_packhead): When max_scr_gap has a value of
2985         -1, no adjustment is made.
2986         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init): 
2987         Rename max_discont property to max_scr_gap. Erase "adjust"
2988         property.
2990         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_send_event): Don't
2991         override send_event anymore, base class does the job.
2992         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_send_event):
2993         Base class now does most of the work.
2994         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_send_event):
2995         Generalize to forwarding the event to all source pads in the
2996         element.
2998         * gst/mpegstream/gstmpegparse.h: 
2999         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
3000         (gst_mpeg_parse_init, gst_mpeg_parse_set_clock) 
3001         (gst_mpeg_parse_chain, gst_mpeg_parse_get_property) 
3002         (gst_mpeg_parse_set_property):
3003         Clock synchronization doesn't make sense anymore for a
3004         demultiplexer.
3006 2005-11-28  Michael Smith  <msmith@fluendo.com>
3008         * gst/realmedia/rmdemux.c: (gst_rmdemux_loop):
3009           Don't treat normal EOS as a fatal error.
3011 2005-11-28  Edward Hervey  <edward@fluendo.com>
3013         * ext/mad/gstmad.c: (gst_mad_chain):
3014         Proper warning statements,
3015         Don't error if the src pad isn't linked when pushing.
3016         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_change_state):
3017         Proper state_change, avoids borkage when going to READY
3019 2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>
3021         * ext/mpeg2dec/gstmpeg2dec.c: (handle_sequence):
3022           Prime libmpeg2's pumps with some null custom buffers
3023           to ensure it doesn't ask us to discard garbage later yay.
3025 2005-11-25  Michael Smith  <msmith@fluendo.com>
3027         * ext/a52dec/gsta52dec.c: (gst_a52dec_init),
3028         (gst_a52dec_sink_setcaps), (gst_a52dec_chain),
3029         (gst_a52dec_chain_raw):
3030         * ext/a52dec/gsta52dec.h:
3031           Accept AC3 in audio/x-private1-ac3 format, which includes
3032           DVD-specific headers, as well as raw AC3, for compatibility with
3033           some demuxers.
3035 2005-11-25  Jan Schmidt  <thaytan@mad.scientist.com>
3037         * ext/mad/gstmad.c: (gst_mad_chain):
3038         When pad_alloc returns other-than-GST_FLOW_OK and mad exits early,
3039         skip frame synthesis and consume input data as if we'd done the 
3040         decode. Makes mad not error when the src pad is not connected.
3041         (#319784)
3043 2005-11-23  Martin Soto  <martinsoto@users.sourceforge.net>
3045         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_class_init) 
3046         (gst_mpeg_parse_handle_discont, gst_mpeg_parse_send_newsegment) 
3047         (gst_mpeg_parse_chain): 
3048         * gst/mpegstream/gstmpegdemux.c (gst_mpeg_demux_class_init) 
3049         (gst_mpeg_demux_send_newsegment): 
3050         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_send_subbuffer): 
3051         * gst/mpegstream/gstmpegparse.h: 
3052         Rename send_discont method to send_newsegment and add parameters
3053         to handle actual segments. Adapt code all around to run with the
3054         new name and signature.
3055         * gst/mpegstream/gstmpegdemux.c: 
3056         * gst/mpegstream/gstmpegparse.c: 
3057         * gst/mpegstream/gstdvddemux.c:
3058         Convert to GST_BOILERPLATE.
3060 2005-11-23  Thomas Vander Stichele  <thomas at apestaart dot org>
3062         * configure.ac: back to HEAD
3064 === release 0.9.6 ===
3066 2005-11-23  Thomas Vander Stichele <thomas at apestaart dot org>
3068         * configure.ac:
3069           releasing 0.9.6, "The Marshals Are Dead"
3071 2005-11-23  Michael Smith <msmith@fluendo.com>
3073         * gst/realmedia/rmdemux.c: (gst_rmdemux_sink_event),
3074         (gst_rmdemux_src_event), (gst_rmdemux_validate_offset),
3075         (find_seek_offset_bytes), (find_seek_offset_time),
3076         (gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
3077         (gst_rmdemux_loop), (gst_rmdemux_fourcc_isplausible),
3078         (gst_rmdemux_chain), (gst_rmdemux_send_event),
3079         (gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
3080         (gst_rmdemux_parse_packet):
3081           Fractional framerates.
3083 2005-11-23  Jan Schmidt  <thaytan@mad.scientist.com>
3085         * ext/mpeg2dec/gstmpeg2dec.c: (src_templ),
3086         (gst_mpeg2dec_negotiate_format), (handle_sequence),
3087         (gst_mpeg2dec_sink_event):
3088         * ext/mpeg2dec/gstmpeg2dec.h:
3089         Use fractional framerates
3091 2005-11-22  Wim Taymans  <wim@fluendo.com>
3093         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_set_clock):
3094         set_clock returns a boolean.
3096 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3098         * ext/mad/gstmad.c: (gst_mad_chain):
3099           Fix seeking even more by sending the newsegment event with the
3100           right parameters. Should fix querying in playbin/totem after
3101           a seek.
3103 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3105         * ext/mad/gstmad.c: (gst_mad_mode_get_type), (gst_mad_src_query),
3106         (normal_seek), (gst_mad_sink_event), (gst_mad_chain):
3107           Fix seeking in stand-alone mode. Fix nonexistant enum value 
3108           introduced in previous commit. Improve debug messages here and 
3109           there. Actually return a proper return value in the sink event
3110           handler.
3112 2005-11-22  Thomas Vander Stichele  <thomas at apestaart dot org>
3114         * ext/lame/gstlame.c:
3115         * ext/mad/gstmad.c:
3116         * ext/sidplay/gstsiddec.cc:
3117           fix up GValueEnum
3119 2005-11-22  Andy Wingo  <wingo@pobox.com>
3121         * Update for gst_tag_setter API changes.
3123 2005-11-22  Andy Wingo  <wingo@pobox.com>
3125         * ext/a52dec/gsta52dec.c (gst_a52dec_sink_event)
3126         * ext/mad/gstid3tag.c (gst_id3_tag_sink_event)
3127         * ext/mad/gstmad.c (gst_mad_chain)
3128         * gst/mpegaudioparse/gstmpegaudioparse.c
3129         (gst_mp3parse_sink_event)
3130         * gst/mpegstream/gstdvddemux.c (gst_dvd_demux_handle_dvd_event)
3131         * gst/mpegstream/gstmpegparse.c (gst_mpeg_parse_handle_discont)
3132         (gst_mpeg_parse_send_discont, gst_mpeg_parse_pad_added)
3133         * gst/realmedia/rmdemux.c (gst_rmdemux_perform_seek)
3134         (gst_rmdemux_chain, gst_rmdemux_add_stream): Run update-funcnames.
3136 2005-11-22  Tim-Philipp Müller  <tim at centricular dot net>
3138         * ext/mad/Makefile.am:
3139           libgsttagedit => libgsttag
3141 2005-11-22  Edward Hervey  <edward@fluendo.com>
3143         * ext/lame/gstlame.c: (gst_lame_sink_event):
3144         Don't take the stream lock
3146 2005-11-21  Andy Wingo  <wingo@pobox.com>
3148         * ext/sidplay/gstsiddec.cc (gst_siddec_sink_event): 
3149         * ext/mpeg2dec/gstmpeg2dec.c (gst_mpeg2dec_sink_event): 
3150         * ext/mad/gstmad.c (gst_mad_sink_event):
3151         * ext/a52dec/gsta52dec.c (gst_a52dec_sink_event): Don't take the
3152         stream lock.
3154         * gst/realmedia/rmdemux.c (gst_rmdemux_perform_seek): Update for
3155         stream lock changes.
3157         * *.h:
3158         * *.c: Ran scripts/update-macros. Oh yes.
3160 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3162         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event):
3163         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_process_event):
3164           Filler events have beem removed for now.
3166 2005-11-21  Tim-Philipp Müller  <tim at centricular dot net>
3168         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_add_video_stream):
3169         * gst/realmedia/rmdemux.c: (gst_rmdemux_chain),
3170         (gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr):
3171           Update for GST_FOURCC_FORMAT API change.
3173 2005-11-21  Edward Hervey  <edward@fluendo.com>
3175         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_raw):
3176         * gst/realmedia/rmdemux.c: (gst_rmdemux_chain),
3177         (gst_rmdemux_add_stream), (gst_rmdemux_parse_mdpr),
3178         (gst_rmdemux_parse_packet):
3179         Modifications for disapearance of GST_PAD_IS_USABLE()
3181 2005-11-18  Michael Smith <msmith@fluendo.com>
3183         * gst/iec958/ac3iec.c: (ac3iec_init), (ac3iec_chain_dvd):
3184           Remove some setcaps brokenness.
3185           Don't crash on bad input.
3187 2005-11-15  Johan Dahlin  <johan@gnome.org>
3189         * ext/mad/gstid3tag.c (gst_mad_id3_to_tag_list): unset GValues after
3190         calling transform.
3191         (gst_id3_tag_do_typefind): Unref caps
3193         * ext/mad/gstmad.c (gst_mad_check_caps_reset): Ditto
3195 2005-11-15  Tim-Philipp Müller  <tim at centricular dot net>
3197         * ext/mpeg2dec/gstmpeg2dec.c: (handle_slice),
3198         (gst_mpeg2dec_sink_event):
3199           Set DELTA_UNIT flag on outgoing buffers if this is NOT a keyframe;
3200           nice-ify debug message in event handler; add CHECKME.
3202         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_process_event),
3203         (gst_dvd_demux_send_event), (gst_dvd_demux_process_private),
3204         (gst_dvd_demux_send_subbuffer), (gst_dvd_demux_reset),
3205         (gst_dvd_demux_sync_stream_to_time):
3206         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_class_init),
3207         (gst_mpeg_demux_process_event), (gst_mpeg_demux_send_event),
3208         (gst_mpeg_demux_handle_discont), (gst_mpeg_demux_new_output_pad),
3209         (gst_mpeg_demux_parse_packet), (gst_mpeg_demux_parse_pes),
3210         (gst_mpeg_demux_send_subbuffer), (gst_mpeg_demux_process_private),
3211         (gst_mpeg_demux_sync_stream_to_time),
3212         (gst_mpeg_demux_handle_src_event), (gst_mpeg_demux_reset):
3213         * gst/mpegstream/gstmpegdemux.h:
3214         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init),
3215         (gst_mpeg_parse_handle_discont), (gst_mpeg_parse_send_buffer),
3216         (gst_mpeg_parse_process_event), (gst_mpeg_parse_send_discont),
3217         (gst_mpeg_parse_send_event), (gst_mpeg_parse_event),
3218         (gst_mpeg_parse_chain):
3219         * gst/mpegstream/gstmpegparse.h:
3220           Get rid of GST_PAD_IS_USABLE and fix GstFlowReturn vs. gboolean
3221           return value confusion (gst_pad_push vs. gst_pad_send_event and
3222           gst_pad_push_event); pass flow return values to caller;
3223           miscellaneous fixes and clean-ups.
3225 2005-11-14  Martin Soto  <soto@localhost.localdomain>
3227         * gst/mpegstream/Makefile.am (noinst_HEADERS): Add
3228         gstrfc2250enc.h.
3230 2005-11-14  Martin Soto  <martinsoto@users.sourceforge.net>
3232         * configure.ac:
3233         * gst/mpegstream/Makefile.am:
3234         * gst/mpegstream/gstdvddemux.c:
3235         * gst/mpegstream/gstdvddemux.h:
3236         * gst/mpegstream/gstmpegdemux.c:
3237         * gst/mpegstream/gstmpegdemux.h:
3238         * gst/mpegstream/gstmpegpacketize.c:
3239         * gst/mpegstream/gstmpegpacketize.h:
3240         * gst/mpegstream/gstmpegparse.c:
3241         * gst/mpegstream/gstmpegparse.h:
3242         * gst/mpegstream/gstmpegstream.c:
3243         * gst/mpegstream/gstrfc2250enc.c:
3244         * gst/mpegstream/gstrfc2250enc.h:
3245         Applied patch from Josef Zlomek <josef.zlomek@xeris.cz> to
3246         partially port the mpegstream plugin to GStreamer 0.9.
3248 2005-11-14  Andy Wingo  <wingo@pobox.com>
3250         * configure.ac (GST_PLUGIN_LDFLAGS): -no-undefined for better
3251         debugging, allows dll builds on windows. Fixes #316076.
3253 2005-11-11  Thomas Vander Stichele  <thomas at apestaart dot org>
3255         * configure.ac: back to HEAD
3257 === release 0.9.5 ===
3259 2005-11-11  Thomas Vander Stichele <thomas at apestaart dot org>
3261         * configure.ac:
3262           releasing 0.9.5, "Zero-Test Patching"
3264 2005-10-27  Wim Taymans  <wim@fluendo.com>
3266         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_reset),
3267         (gst_mpeg2dec_alloc_buffer), (gst_mpeg2dec_negotiate_format),
3268         (handle_sequence), (handle_picture), (handle_slice),
3269         (gst_mpeg2dec_chain), (gst_mpeg2dec_src_query), (normal_seek),
3270         (gst_mpeg2dec_src_event), (gst_mpeg2dec_change_state):
3271         Forward GstFlowReturn about everywhere.
3272         Handle seeking correctly.
3274 2005-10-27  Wim Taymans  <wim@fluendo.com>
3276         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_negotiate_format),
3277         (handle_sequence), (handle_slice), (gst_mpeg2dec_chain),
3278         (gst_mpeg2dec_src_query), (gst_mpeg2dec_change_state):
3279         Small cleanups in refcounting.
3281 2005-10-26  Wim Taymans  <wim@fluendo.com>
3283         * ext/mpeg2dec/gstmpeg2dec.c: (gst_mpeg2dec_init),
3284         (gst_mpeg2dec_dispose), (gst_mpeg2dec_reset),
3285         (gst_mpeg2dec_alloc_buffer), (gst_mpeg2dec_negotiate_format),
3286         (handle_sequence), (handle_picture):
3287         * ext/mpeg2dec/gstmpeg2dec.h:
3288         Removed lots of dubious code.
3289         Handle flushing and seeking correctly. Still leaks though...
3291 2005-10-24  Christian Schaller  <christian at fluendo dot com>
3293         * configure.ac: port over thomas plugin listing from base
3295 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3297         * configure.ac:
3298           back to HEAD
3300 === release 0.9.4 ===
3302 2005-10-24  Thomas Vander Stichele  <thomas at apestaart dot org>
3304         * NEWS:
3305         * RELEASE:
3306         * configure.ac:
3307           Releasing 0.9.4, "Diplodocus"
3309 2005-10-23  Julien MOUTTE  <julien@moutte.net>
3311         * gst/realmedia/rmdemux.c: (gst_rmdemux_loop): STOPPED->FAILED
3313 2005-10-21  Wim Taymans  <wim@fluendo.com>
3315         * gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
3316         (gst_rmdemux_perform_seek), (gst_rmdemux_src_query):
3317         Set correct stream time in newsegment event.
3319 2005-10-21  Thomas Vander Stichele  <thomas at apestaart dot org>
3321         * ext/Makefile.am:
3322           fix distcheck
3324 2005-10-20  Tim-Philipp Müller  <tim at centricular dot net>
3326         * ext/a52dec/Makefile.am:
3327         * ext/a52dec/gsta52dec.c: (gst_a52dec_base_init),
3328         (gst_a52dec_class_init), (gst_a52dec_sink_event),
3329         (gst_a52dec_change_state):
3330         * ext/a52dec/gsta52dec.h:
3331           Re-enable CPU flags, use liboil to get them.
3333 2005-10-20  Josef Zlomek  <josef dot zlomek at xeris dot cz>
3335         Reviewed by: Tim-Philipp Müller  <tim at centricular dot net>
3337         * configure.ac:
3338         * ext/a52dec/Makefile.am:
3339         * ext/a52dec/gsta52dec.c:
3340         * ext/a52dec/gsta52dec.h:
3341           Port AC3 decoder to 0.9 (#318849).
3343 2005-10-20  Wim Taymans  <wim@fluendo.com>
3345         * ext/sidplay/gstsiddec.cc:
3346         Small fixes and more error messages.
3348 2005-10-19  Wim Taymans  <wim@fluendo.com>
3350         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_query),
3351         (gst_amrnbparse_state_change):
3352         * ext/mad/gstid3tag.c: (gst_id3_tag_src_query):
3353         * ext/mad/gstmad.c: (gst_mad_get_query_types), (gst_mad_src_query):
3354         * ext/mpeg2dec/gstmpeg2dec.c:
3355         * ext/sidplay/gstsiddec.cc:
3356         * gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
3357         (gst_rmdemux_src_query), (gst_rmdemux_src_query_types):
3358         API change fixen.
3360 2005-10-19  Tim-Philipp Müller  <tim at centricular dot net>
3362         * configure.ac:
3363           GST_DOC has been renamed to GST_DOCBOOK_CHECK
3365 2005-10-19  Thomas Vander Stichele  <thomas at apestaart dot org>
3367         * configure.ac:
3368           some docs I had
3369         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_chain):
3370           trivial fixes
3372 2005-10-18  Wim Taymans  <wim@fluendo.com>
3374         * gst/realmedia/rmdemux.c: (gst_rmdemux_validate_offset),
3375         (gst_rmdemux_perform_seek):
3376         segment-start/done API change.
3378 2005-10-17  Michael Smith <msmith@fluendo.com>
3380         * gst/iec958/ac3iec.c: (ac3iec_chain_raw):
3381           Set buffer duration on IEC958 buffers.
3383 2005-10-16  Tim-Philipp Müller  <tim at centricular dot net>
3385         * configure.ac:
3386           Fix glib check
3388 2005-10-13  Tim-Philipp Müller  <tim at centricular dot net>
3390         * ext/mad/gstid3tag.c: (gst_mad_id3_to_tag_list):
3391           Fix handling of GST_TAG_DATE, which is now of type GST_TYPE_DATE.
3393 2005-10-13  Stefan Kost  <ensonic@users.sf.net>
3395         * examples/stats/mp2ogg.c:
3396           yes, typo fixes
3398 2005-10-12  Stefan Kost  <ensonic@users.sf.net>
3400         * examples/indexing/indexmpeg.c: (main):
3401         * ext/a52dec/gsta52dec.c: (gst_a52dec_init):
3402         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_is_open),
3403         (dvdnavsrc_set_property), (dvdnavsrc_open), (dvdnavsrc_close),
3404         (dvdnavsrc_event), (dvdnavsrc_convert), (dvdnavsrc_query):
3405         * ext/dvdread/dvdreadsrc.c: (dvdreadsrc_set_property),
3406         (dvdreadsrc_srcpad_query), (dvdreadsrc_get),
3407         (dvdreadsrc_open_file), (dvdreadsrc_close_file):
3408         * ext/dvdread/dvdreadsrc.h:
3409         * ext/lame/gstlame.h:
3410         * gst/asfdemux/gstasfdemux.c: (gst_asf_demux_init):
3411         * gst/asfdemux/gstasfmux.c: (gst_asfmux_init):
3412         * gst/iec958/ac3iec.h:
3413         * gst/mpegstream/gstdvddemux.c: (gst_dvd_demux_init):
3414         * gst/mpegstream/gstmpegdemux.c: (gst_mpeg_demux_init):
3415         * gst/mpegstream/gstmpegparse.c: (gst_mpeg_parse_init):
3416         * gst/mpegstream/gstrfc2250enc.c: (gst_rfc2250_enc_init):
3417         * gst/synaesthesia/gstsynaesthesia.c: (gst_synaesthesia_init):
3418         renamed GST_FLAGS macros to GST_OBJECT_FLAGS
3419         moved bitshift from macro to enum definition
3421 2005-10-11  Wim Taymans  <wim@fluendo.com>
3423         * ext/mad/gstid3tag.c: (gst_id3_tag_sink_event):
3424         * ext/mad/gstmad.c: (gst_mad_chain):
3425         * gst/mpegaudioparse/gstmpegaudioparse.c:
3426         (gst_mp3parse_sink_event), (gst_mp3parse_chain):
3427         * gst/realmedia/rmdemux.c: (gst_rmdemux_perform_seek),
3428         (gst_rmdemux_chain), (gst_rmdemux_add_stream):
3429         newsegment API update.
3431 2005-10-06  Wim Taymans  <wim@fluendo.com>
3433         * ext/amrnb/amrnbdec.c:
3434         Mark invalid frame sizes
3436         * ext/mad/gstmad.c: (gst_mad_init), (gst_mad_chain):
3437         UNUSABLE is not to be used here, just push out stuff so
3438         probes can continue linking or making the pad usable.
3440 2005-10-05  Michael Smith <msmith@fluendo.com>
3442         * gst/realmedia/rmdemux.c: (gst_rmdemux_sink_event),
3443         (gst_rmdemux_src_event), (gst_rmdemux_validate_offset),
3444         (find_seek_offset_bytes), (find_seek_offset_time),
3445         (gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
3446         (gst_rmdemux_loop), (gst_rmdemux_fourcc_isplausible),
3447         (gst_rmdemux_chain), (gst_rmdemux_send_event),
3448         (gst_rmdemux_add_stream), (gst_rmdemux_parse_packet):
3449           Improve seeking error-resilience.
3450           General improvements in error handling.
3452 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
3454         * configure.ac:
3455           back to development
3457 === release 0.9.3 ===
3459 2005-10-03  Thomas Vander Stichele  <thomas at apestaart dot org>
3461         * NEWS:
3462         * README:
3463         * configure.ac:
3464           releasing 0.9.3, "Athos"
3466 2005-09-30  Michael Smith <msmith@fluendo.com>
3468         * gst/realmedia/rmdemux.c: (gst_rmdemux_src_event),
3469         (gst_rmdemux_perform_seek), (gst_rmdemux_src_query),
3470         (gst_rmdemux_change_state), (gst_rmdemux_loop),
3471         (gst_rmdemux_fourcc_isplausible), (gst_rmdemux_chain),
3472         (gst_rmdemux_send_event), (gst_rmdemux_add_stream),
3473         (gst_rmdemux_parse_packet):
3474         * gst/realmedia/rmdemux.h:
3475           Sanity checking, and fix some minor memory leaks
3477 2005-09-29  Michael Smith <msmith@fluendo.com>
3479         * gst/realmedia/rmdemux.c: (gst_rmdemux_src_event),
3480         (gst_rmdemux_perform_seek), (gst_rmdemux_loop),
3481         (gst_rmdemux_send_event), (gst_rmdemux_add_stream),
3482         (gst_rmdemux_parse_mdpr), (gst_rmdemux_parse_packet):
3483         Real demuxer fixes. Make it more bulletproof against bad data,
3484         identify a few more stream types.
3485         Fix seeking so that it works (at least with the seek example program;
3486         it still fails with totem).
3488 2005-09-26  Wim Taymans  <wim@fluendo.com>
3490         * gst/mpegaudioparse/gstmpegaudioparse.c:
3491         (gst_mp3parse_sink_event), (gst_mp3parse_chain):
3492         Set correct caps on buffers too.
3494 2005-09-26  Wim Taymans  <wim@fluendo.com>
3496         * gst/mpegaudioparse/gstmpegaudioparse.c: (gst_mp3parse_init),
3497         (gst_mp3parse_sink_event), (gst_mp3parse_chain):
3498         * gst/mpegaudioparse/gstmpegaudioparse.h:
3499         Put timestamps on buffers.
3501 2005-09-21  Flavio Oliveira  <flavio.oliveira@indt.org.br>
3503         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_base_init):
3504         Changed amrnbenc description, it is an encoder, not decoder.
3506 2005-09-21  Michael Smith <msmith@fluendo.com>
3508         * gst/ac3parse/gstac3parse.c: (gst_ac3parse_class_init),
3509         (gst_ac3parse_init), (gst_ac3parse_chain):
3510         * gst/iec958/ac3_padder.c: (ac3_crc_init), (ac3_crc_update),
3511         (ac3_crc_validate), (ac3p_init), (ac3p_parse):
3512         * gst/iec958/ac3_padder.h:
3513         * gst/iec958/ac3iec.c:
3514           Various changes to AC3->IEC958 framer. Mostly to make our IEC958
3515           headers more accurate, and to check AC3 checksums (both of them in
3516           each frame), and dump the frame (as a probable sync failure) if they
3517           don't match. General code cleanup, improved comments. Changed to not
3518           construct the header backwards, and not byteswap everything else.
3519           If we end up needing to do little-endian output, we should swap in
3520           the element doing the output (AC3 is big-endian).
3522 2005-09-20  Thomas Vander Stichele  <thomas at apestaart dot org>
3524         * docs/plugins/gst-plugins-ugly-plugins.args:
3525         * docs/plugins/gst-plugins-ugly-plugins.hierarchy:
3526         * docs/plugins/gst-plugins-ugly-plugins.interfaces:
3527         * docs/plugins/gst-plugins-ugly-plugins.prerequisites:
3528           commit missing files
3529         * docs/plugins/inspect/plugin-lame.xml:
3530           update
3532 2005-09-19  Wim Taymans  <wim@fluendo.com>
3534         * ext/lame/gstlame.c: (gst_lame_chain):
3535         Set caps on outgoing buffers.
3537 2005-09-16  Thomas Vander Stichele  <thomas at apestaart dot org>
3539         * ext/lame/gstlame.c:
3540         * ext/lame/gstlame.h:
3541           clean up further so we don't try to set up five times for
3542           a simple pipeline
3544 2005-09-16  Michael Smith <msmith@fluendo.com>
3546         * gst/iec958/ac3iec.c: (ac3iec_init):
3547           Set setcaps function on sink pad, not source pad. Produce correct
3548           caps on output buffers.
3550 2005-09-07  Stefan Kost  <ensonic@users.sf.net>
3552         * ext/mad/gstid3tag.c:
3553           gsttaginterface.h -> gsttagsetter.h
3555 === release 0.9.1 ===
3557 2005-09-06  Thomas Vander Stichele  <thomas at apestaart dot org>
3559         * README:
3560         * NEWS:
3561         * autogen.sh:
3562         * configure.ac:
3563           releasing 0.9.1, "The Rat"
3565 2005-09-06  Wim Taymans  <wim@fluendo.com>
3567         * ext/amrnb/amrnbdec.c: (gst_amrnbdec_state_change):
3568         * ext/amrnb/amrnbenc.c: (gst_amrnbenc_state_change):
3569         * ext/amrnb/amrnbparse.c: (gst_amrnbparse_state_change):
3570         State change function updates.
3572 2005-09-05  Jan Schmidt  <thaytan@mad.scientist.com>
3574         * ext/mpeg2dec/gstmpeg2dec.c:
3575         GST_CAT_SEEK disappeared from the public API at some point
3577 2005-09-02  Michael Smith <msmith@fluendo.com>
3579         * gst/iec958/ac3iec.c:
3580           Use the right mime-type for AC3 input, audio/x-private1-ac3, as
3581           output by demux
3583 2005-09-02  Michael Smith <msmith@fluendo.com>
3585         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_chain_dvd):
3586         * gst/iec958/ac3iec.c: (ac3iec_get_type), (ac3iec_base_init),
3587         (ac3iec_class_init), (ac3iec_init), (ac3iec_finalize),
3588         (ac3iec_setcaps), (ac3iec_set_property), (ac3iec_get_property),
3589         (ac3iec_chain_dvd), (ac3iec_chain_raw), (ac3iec_change_state),
3590         (plugin_init):
3591           Changes to use the first_access parameter correctly in ac3 and lpcm
3592           plugins. General cleanups in iec958 framer.
3594 2005-09-01  Michael Smith <msmith@fluendo.com>
3596         * configure.ac:
3597         * gst/iec958/Makefile.am:
3598         * gst/iec958/ac3_padder.c: (ac3p_init), (ac3p_push_data),
3599         (ac3p_parse):
3600         * gst/iec958/ac3_padder.h:
3601         * gst/iec958/ac3iec.c: (ac3iec_get_type), (ac3iec_base_init),
3602         (ac3iec_class_init), (ac3iec_init), (ac3iec_finalize),
3603         (ac3iec_set_property), (ac3iec_get_property), (ac3iec_chain),
3604         (ac3iec_change_state), (plugin_init):
3605         * gst/iec958/ac3iec.h:
3606           AC3 -> IEC958 (S/PDIF) framer, port of Martin Soto's 0.8 plugin.
3608 2005-09-01  Wim Taymans  <wim@fluendo.com>
3610         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcmdec_setcaps),
3611         (gst_dvdlpcmdec_chain_dvd), (gst_dvdlpcmdec_chain_raw),
3612         (gst_dvdlpcmdec_change_state):
3613         Cleanups, fixed header parsing and stripping.
3615 2005-09-01  Michael Smith <msmith@fluendo.com>
3617         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
3618         (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
3619         (update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
3620         (gst_dvdlpcmdec_chain_raw):
3621           Use the right bytes to parse the LPCM dvd header
3623 2005-09-01  Michael Smith <msmith@fluendo.com>
3625         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
3626         (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
3627         (update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
3628         (gst_dvdlpcmdec_chain_raw):
3629           Return the correct values from chain function.
3631 2005-08-31  Michael Smith <msmith@fluendo.com>
3633         * gst/dvdlpcmdec/gstdvdlpcmdec.c: (gst_dvdlpcm_reset),
3634         (gst_dvdlpcmdec_init), (gst_dvdlpcmdec_setcaps),
3635         (update_timestamps), (parse_header), (gst_dvdlpcmdec_chain_dvd),
3636         (gst_dvdlpcmdec_chain_raw):
3637         * gst/dvdlpcmdec/gstdvdlpcmdec.h:
3638           Restructure LPCM decoder to not expect the demuxer to parse the LPCM
3639           header; instead do this internally. Also support the old way, using
3640           a different mime-type.
3642 2005-08-31  Thomas Vander Stichele  <thomas at apestaart dot org>
3644         * Makefile.am:
3645         * configure.ac:
3646         * docs/plugins/Makefile.am:
3647         * docs/plugins/gst-plugins-ugly-plugins-docs.sgml:
3648         * docs/plugins/gst-plugins-ugly-plugins-sections.txt:
3649         * docs/plugins/gst-plugins-ugly-plugins.types:
3650         * ext/dvdnav/dvdnavsrc.c: (dvdnavsrc_tca_seek):
3651         * ext/dvdread/dvdreadsrc.c: (_open), (_seek_title),
3652         (_seek_chapter), (_read):
3653         * gst/mpegaudioparse/gstmpegaudioparse.c:
3654           add plugin documentation