summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* releasing 0.10.4Thomas Vander Stichele2006-08-1455-220/+303
| | | | | Original commit message from CVS: releasing 0.10.4
* gst/qtdemux/qtdemux.c: Extract all references/redirections if there is more ↵Tim-Philipp Müller2006-08-141-10/+121
| | | | | | | | | | | than one and sort them; also extract mini... Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_redirects_sort_func), (qtdemux_process_redirects), (qtdemux_parse_tree): Extract all references/redirections if there is more than one and sort them; also extract minimum required bitrate information if available. (#350399)
* Send the newsegment event in the streaming thread.Edward Hervey2006-08-103-11/+21
| | | | | | | | | | Original commit message from CVS: Patch by: Edward Hervey <edward@fluendo.com> * configure.ac: * gst/wavparse/gstwavparse.c: (gst_wavparse_perform_seek), (gst_wavparse_stream_data): Send the newsegment event in the streaming thread. Fixes #347529
* bumped for prerelThomas Vander Stichele2006-08-101-3/+3
| | | | | Original commit message from CVS: bumped for prerel
* update translationsThomas Vander Stichele2006-08-1014-85/+141
| | | | | Original commit message from CVS: update translations
* gst/qtdemux/qtdemux.c: Fix silly typo.Tim-Philipp Müller2006-08-081-1/+1
| | | | | | Original commit message from CVS: * gst/qtdemux/qtdemux.c: (qtdemux_parse_tree): Fix silly typo.
* ChangeLog surgery: mention bug numberTim-Philipp Müller2006-08-081-3/+3
| | | | | Original commit message from CVS: ChangeLog surgery: mention bug number
* ext/jpeg/: Refuse sink caps in the encoder if width or height is not a ↵Tim-Philipp Müller2006-08-083-25/+51
| | | | | | | | | | | | | multiple of 16, the encoder does not support t... Original commit message from CVS: * ext/jpeg/gstsmokedec.c: (gst_smokedec_chain): * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_setcaps), (gst_smokeenc_resync), (gst_smokeenc_chain): Refuse sink caps in the encoder if width or height is not a multiple of 16, the encoder does not support that yet; along the same lines, check the return value of the encoder setup function; also remove some debug log clutter.
* ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing whether a ↵Andy Wingo2006-08-044-37/+183
| | | | | | | | | | | | | | | | | | | | | | | | | | | processor can work in place or not, and for... Original commit message from CVS: 2006-08-04 Andy Wingo <wingo@pobox.com> * ext/ladspa/gstsignalprocessor.h: Add infrastructure for storing whether a processor can work in place or not, and for keeping track of its state. Change the FlowReturn instance variable from "state" to "flow_state", all callers changed. * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setup) (gst_signal_processor_start, gst_signal_processor_stop) (gst_signal_processor_cleanup): New functions to manage the processor's state. (gst_signal_processor_setcaps): start() as well as setup() here. (gst_signal_processor_prepare): Respect CAN_PROCESS_IN_PLACE. (gst_signal_processor_change_state): Stop and cleanup the processor as we go to NULL. * ext/ladspa/gstladspa.c (gst_ladspa_base_init): Reuse buffers if INPLACE_BROKEN is not set. * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_prepare): Do the alloc_buffer in bytes, not frames.
* sys/ximage/ximageutil.c: Fix rgb masks when recording in < 24bpp.Zaheer Abbas Merali2006-08-042-0/+9
| | | | | | | | Original commit message from CVS: 2006-08-04 Zaheer Abbas Merali <zaheerabbas at merali dot org> * sys/ximage/ximageutil.c: (ximageutil_xcontext_get): Fix rgb masks when recording in < 24bpp.
* BPBAndy Wingo2006-08-042-1/+2
| | | | | Original commit message from CVS: (gst_signal_processor_src_activate_pull): BPB
* ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps) ↵Andy Wingo2006-08-042-74/+140
| | | | | | | | | | | | | | | | | | (gst_signal_processor_prepare) (gst_signal_processor_u... Original commit message from CVS: 2006-08-04 Andy Wingo <wingo@pobox.com> * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_setcaps) (gst_signal_processor_prepare) (gst_signal_processor_update_inputs) (gst_signal_processor_process, gst_signal_processor_pen_buffer) (gst_signal_processor_flush) (gst_signal_processor_sink_activate_push) (gst_signal_processor_src_activate_pull) (gst_signal_processor_change_state): Remove the last of the code that assumes that we process whole buffers at a time. Fix some debugging. Seems to work now in some cases.
* ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process): Fix ↵Andy Wingo2006-07-312-2/+15
| | | | | | | | | | | nframes-choosing. Original commit message from CVS: 2006-08-01 Andy Wingo <wingo@pobox.com> * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_process): Fix nframes-choosing. (gst_signal_processor_init): Init pending_in and pending_out.
* ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No more default ↵Andy Wingo2006-07-313-36/+91
| | | | | | | | | | | | | | | | | | | | | | | | | sample rate, although we never check tha... Original commit message from CVS: 2006-08-01 Andy Wingo <wingo@pobox.com> * ext/ladspa/gstsignalprocessor.c (gst_signal_processor_init): No more default sample rate, although we never check that the sample rate actually gets set. Something for the future. (gst_signal_processor_setcaps): Some refcount fixes, flow fixes. (gst_signal_processor_event): Refcount fixen. (gst_signal_processor_process): Pull the number of frames to process from the sizes of the buffers in the input pens. (gst_signal_processor_pen_buffer): Remove an incorrect FIXME :) (gst_signal_processor_do_pulls): Add an nframes argument, and use it instead of buffer_frames. (gst_signal_processor_getrange): Refcount fixen, pass nframes on to do_pulls. (gst_signal_processor_chain) (gst_signal_processor_sink_activate_push) (gst_signal_processor_src_activate_pull): Refcount fixen. * ext/ladspa/gstsignalprocessor.h: No more buffer_frames, yay.
* ext/ladspa/gstsignalprocessor.c: don't query buffer-frames from caps, add ↵Stefan Kost2006-07-312-12/+14
| | | | | | | | | | lots of debug-log, try fix for assert (#349... Original commit message from CVS: * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_setcaps), (gst_signal_processor_process): don't query buffer-frames from caps, add lots of debug-log, try fix for assert (#349189)
* gst/udp/gstudpsrc.c: Fix docs.Wim Taymans2006-07-312-2/+7
| | | | | | Original commit message from CVS: * gst/udp/gstudpsrc.c: Fix docs.
* ext/ladspa/gstsignalprocessor.c: Add debugs logs here and there, add more ↵Stefan Kost2006-07-292-9/+65
| | | | | | | | | | | | | | | | error handling, add some Original commit message from CVS: * ext/ladspa/gstsignalprocessor.c: (gst_signal_processor_add_pad_from_template), (gst_signal_processor_init), (gst_signal_processor_setcaps), (gst_signal_processor_process), (gst_signal_processor_pen_buffer), (gst_signal_processor_do_pulls), (gst_signal_processor_getrange), (gst_signal_processor_sink_activate_push), (gst_signal_processor_src_activate_pull), (gst_signal_processor_change_state): Add debugs logs here and there, add more error handling, add some FIXME comments, filed #349189
* ext/jpeg/gstsmokeenc.c: Set caps on buffer correctly. Fixes bug #349155.Zaheer Abbas Merali2006-07-293-4/+15
| | | | | | | | | Original commit message from CVS: 2006-07-29 Zaheer Abbas Merali <zaheerabbas at merali dot org> * ext/jpeg/gstsmokeenc.c: (gst_smokeenc_getcaps), (gst_smokeenc_setcaps), (gst_smokeenc_chain): Set caps on buffer correctly. Fixes bug #349155.
* gst/multipart/multipartdemux.c: Uses GstAdapter instead of own buffering.Sjoerd Simons2006-07-283-207/+296
| | | | | | | | | | | | | | | | | | | Original commit message from CVS: Patch by: Sjoerd Simons <sjoerd at luon dot net> * gst/multipart/multipartdemux.c: (gst_multipart_demux_base_init), (gst_multipart_demux_class_init), (gst_multipart_demux_init), (gst_multipart_demux_finalize), (get_line_end), (multipart_parse_header), (multipart_find_boundary), (gst_multipart_demux_chain), (gst_multipart_demux_change_state), (gst_multipart_set_property), (gst_multipart_get_property): Uses GstAdapter instead of own buffering. Actually parses the mime-type correctly (In tests the mime-type was always "" with the old version). Uses the Content-length header if available to speed up things. Reliably autoscans the boundary name by default. Fixes #349068. * gst/multipart/multipartmux.c: (gst_multipart_mux_collected): Don't start the stream with a \n.
* sys/sunaudio/gstsunaudiosrc.c: Open source with O_NONBLOCK (#349015).Brian Cameron2006-07-282-1/+8
| | | | | | | Original commit message from CVS: Patch by: Brian Cameron <brian dot cameron at sun com> * sys/sunaudio/gstsunaudiosrc.c: (gst_sunaudiosrc_open): Open source with O_NONBLOCK (#349015).
* gst/avi/gstavidemux.*: Whitespace fixes and more debugStefan Kost2006-07-283-3/+15
| | | | | | | | Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_stream_index), (gst_avi_demux_massage_index): * gst/avi/gstavidemux.h: Whitespace fixes and more debug
* gst/autodetect/gstautoaudiosink.c: Get rid of old and unused magic ↵Tim-Philipp Müller2006-07-272-68/+65
| | | | | | | | | | | | | sound-server properties stuff. Original commit message from CVS: * gst/autodetect/gstautoaudiosink.c: (gst_auto_audio_sink_create_element_with_pretty_name), (gst_auto_audio_sink_find_best), (gst_auto_audio_sink_change_state): Get rid of old and unused magic sound-server properties stuff. Add suffix to child sink's name that makes it easy to see from the name alone which type it actually is (alsa, oss, esd, etc.).
* gst/udp/gstudpsrc.*: Rename "buffer" to "buffer-size" to make clear it is a ↵Wim Taymans2006-07-273-17/+25
| | | | | | | | | | | | size we set and not some sort of feature ... Original commit message from CVS: * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init), (gst_udpsrc_set_property), (gst_udpsrc_get_property), (gst_udpsrc_start): * gst/udp/gstudpsrc.h: Rename "buffer" to "buffer-size" to make clear it is a size we set and not some sort of feature we enable.
* gst/udp/gstudpsrc.c: Use CLOSE_SOCKET() here instead of close() to maintain ↵Tim-Philipp Müller2006-07-272-1/+7
| | | | | | | | | win32 workiness. Original commit message from CVS: * gst/udp/gstudpsrc.c: (gst_udpsrc_start): Use CLOSE_SOCKET() here instead of close() to maintain win32 workiness.
* gst/udp/gstudpsrc.*: Added "buffer" property to control the kernel receive ↵Thijs Vermeir2006-07-273-15/+88
| | | | | | | | | | | | | | | buffer size. Original commit message from CVS: Patch by: Thijs Vermeir <thijs dot vermeir at barco dot com> * gst/udp/gstudpsrc.c: (gst_udpsrc_class_init), (gst_udpsrc_init), (gst_udpsrc_create), (gst_udpsrc_set_property), (gst_udpsrc_get_property), (gst_udpsrc_start): * gst/udp/gstudpsrc.h: Added "buffer" property to control the kernel receive buffer size. Update documentation. Small cleanups. Fixes #348752. API: buffer property
* gst/rtp/: Fix timestamp calculation on outgoing RTP packets.Kai Vehmanen2006-07-263-14/+45
| | | | | | | | | | | Original commit message from CVS: Patch by: Kai Vehmanen <kv2004 at eca dot cx> * gst/rtp/gstrtppcmapay.c: (gst_rtp_pcma_pay_flush), (gst_rtp_pcma_pay_handle_buffer): * gst/rtp/gstrtppcmupay.c: (gst_rtp_pcmu_pay_flush), (gst_rtp_pcmu_pay_handle_buffer): Fix timestamp calculation on outgoing RTP packets. Fixes #348675.
* ext/taglib/gstid3v2mux.cc: is still sub-optimal though, since we don't ↵Tim-Philipp Müller2006-07-262-1/+41
| | | | | | | | | | | retain or extract the comment descriptions pro... Original commit message from CVS: * ext/taglib/gstid3v2mux.cc: Fix writing of comment frames (should be COMM not TCOM), is still sub-optimal though, since we don't retain or extract the comment descriptions properly (#334375, also see #334375).
* gst/wavparse/gstwavparse.c: #define 'fact' RIFF chunk if we are not ↵Tim-Philipp Müller2006-07-262-2/+10
| | | | | | | | | | compiling against Original commit message from CVS: * gst/wavparse/gstwavparse.c: #define 'fact' RIFF chunk if we are not compiling against -base CVS (we don't want to depend on -base CVS for this one define only, and also not for release order reasons).
* ext/taglib/gstid3v2mux.cc: Handle multiple tags of the same type properly. ↵Tim-Philipp Müller2006-07-262-228/+319
| | | | | | | | | | | Re-inject unparsed ID3v2 frames that we ge... Original commit message from CVS: * ext/taglib/gstid3v2mux.cc: Handle multiple tags of the same type properly. Re-inject unparsed ID3v2 frames that we get as binary blobs from id3demux into the tag again so we don't lose information when retagging (#334375).
* sys/ximage/gstximagesrc.c: Document newly-added properties properly, so that ↵Tim-Philipp Müller2006-07-252-4/+51
| | | | | | | | | | | there is a 'Since: 0.10.4' in the plugin... Original commit message from CVS: * sys/ximage/gstximagesrc.c: (gst_ximage_src_class_init): Document newly-added properties properly, so that there is a 'Since: 0.10.4' in the plugin docs. Convert some property names into canonical GObject style (GObject will do that internally anyway).
* gst/id3demux/id3tags.c: Extract frames for ID3v2 versions prior to ID3v2.3.0 ↵Tim-Philipp Müller2006-07-252-4/+28
| | | | | | | | | | | properly as well, and add the version to... Original commit message from CVS: * gst/id3demux/id3tags.c: (id3demux_add_id3v2_frame_blob_to_taglist): Extract frames for ID3v2 versions prior to ID3v2.3.0 properly as well, and add the version to the blob's buffer caps, since that information will be needed for deserialisation later on (#348644).
* gst/avi/gstavidemux.c: Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to ↵Stefan Kost2006-07-252-33/+29
| | | | | | | | | | gstinfo.h. Fixed indentation and spacing. Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_read_subindexes), (gst_avi_demux_parse_stream): Moved win32 variant of GST_DEBUG_CATEGORY_EXTERN to gstinfo.h. Fixed indentation and spacing.
* sys/directsound/gstdirectsoundsink.*: Add an attenuation property that will ↵Sébastien Moutte2006-07-245-118/+295
| | | | | | | | | | | | | | | | | | | | | | | directly attenuate the directsound buffer. Original commit message from CVS: * sys/directsound/gstdirectsoundsink.h: * sys/directsound/gstdirectsoundsink.c: Add an attenuation property that will directly attenuate the directsound buffer. Change the size of the directsound secondary buffer to a half second. Add more debug logs. Add a lock to protect dsound buffer write access. Fix a bad implementation of reset. * sys/directsound/gstdirectdrawsink.c: * sys/directsound/gstdirectdrawsink.h: Add a keep_aspect_ratio property. Do not use overlay if not supported. Add more debug logs. Remove overwrite of WM_ERASEBKGND message handling. It was not redrawing border when keep_aspect_ratio was enabled. * win32/common/config.h: update version waiting an auto-generated config.h
* docs/plugins/: Update files to CVS/Prerelease version, add esdsink docs.Tim-Philipp Müller2006-07-2455-103/+279
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Original commit message from CVS: * docs/plugins/Makefile.am: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: * docs/plugins/gst-plugins-good-plugins.args: * docs/plugins/inspect/plugin-1394.xml: * docs/plugins/inspect/plugin-aasink.xml: * docs/plugins/inspect/plugin-alaw.xml: * docs/plugins/inspect/plugin-alpha.xml: * docs/plugins/inspect/plugin-alphacolor.xml: * docs/plugins/inspect/plugin-annodex.xml: * docs/plugins/inspect/plugin-apetag.xml: * docs/plugins/inspect/plugin-auparse.xml: * docs/plugins/inspect/plugin-autodetect.xml: * docs/plugins/inspect/plugin-avi.xml: * docs/plugins/inspect/plugin-cacasink.xml: * docs/plugins/inspect/plugin-cairo.xml: * docs/plugins/inspect/plugin-cdio.xml: * docs/plugins/inspect/plugin-cutter.xml: * docs/plugins/inspect/plugin-debug.xml: * docs/plugins/inspect/plugin-dv.xml: * docs/plugins/inspect/plugin-efence.xml: * docs/plugins/inspect/plugin-effectv.xml: * docs/plugins/inspect/plugin-esdsink.xml: * docs/plugins/inspect/plugin-flac.xml: * docs/plugins/inspect/plugin-flxdec.xml: * docs/plugins/inspect/plugin-gconfelements.xml: * docs/plugins/inspect/plugin-gdkpixbuf.xml: * docs/plugins/inspect/plugin-goom.xml: * docs/plugins/inspect/plugin-halelements.xml: * docs/plugins/inspect/plugin-icydemux.xml: * docs/plugins/inspect/plugin-id3demux.xml: * docs/plugins/inspect/plugin-jpeg.xml: * docs/plugins/inspect/plugin-level.xml: * docs/plugins/inspect/plugin-matroska.xml: * docs/plugins/inspect/plugin-mulaw.xml: * docs/plugins/inspect/plugin-multipart.xml: * docs/plugins/inspect/plugin-navigationtest.xml: * docs/plugins/inspect/plugin-ossaudio.xml: * docs/plugins/inspect/plugin-png.xml: * docs/plugins/inspect/plugin-rtp.xml: * docs/plugins/inspect/plugin-rtsp.xml: * docs/plugins/inspect/plugin-shout2send.xml: * docs/plugins/inspect/plugin-smpte.xml: * docs/plugins/inspect/plugin-speex.xml: * docs/plugins/inspect/plugin-udp.xml: * docs/plugins/inspect/plugin-videobalance.xml: * docs/plugins/inspect/plugin-videobox.xml: * docs/plugins/inspect/plugin-videoflip.xml: * docs/plugins/inspect/plugin-videomixer.xml: * docs/plugins/inspect/plugin-wavenc.xml: * docs/plugins/inspect/plugin-wavparse.xml: * docs/plugins/inspect/plugin-ximagesrc.xml: Update files to CVS/Prerelease version, add esdsink docs. * ext/esd/esdsink.c: Add gtk-doc blurb. * gst/rtp/gstrtpmp4vpay.c: Fix typo in element description.
* ChangeLog surgery: fix Stefan's e-mail addressTim-Philipp Müller2006-07-241-1/+1
| | | | | Original commit message from CVS: ChangeLog surgery: fix Stefan's e-mail address
* ext/esd/esdsink.c: Prevent libesd from auto-spawning a sound daemon if it is ↵Tim-Philipp Müller2006-07-242-1/+26
| | | | | | | | | | | | | not already running. Now that we don't d... Original commit message from CVS: * ext/esd/esdsink.c: (gst_esdsink_open), (gst_esdsink_factory_init): Prevent libesd from auto-spawning a sound daemon if it is not already running. Now that we don't do evil stuff like that any longer we can give esdsink a rank so that autoaudiosink will try it as well if all other audio sinks fail (#343051).
* ext/esd/Makefile.am: Oops, need to remove README from EXTRA_DIST as well.Tim-Philipp Müller2006-07-242-1/+6
| | | | | | Original commit message from CVS: * ext/esd/Makefile.am: Oops, need to remove README from EXTRA_DIST as well.
* ext/esd/README: Remove, it contains nothing useful anyway.Tim-Philipp Müller2006-07-243-44/+16
| | | | | | | | | Original commit message from CVS: * ext/esd/README: Remove, it contains nothing useful anyway. * ext/esd/esdsink.c: (gst_esdsink_init), (gst_esdsink_prepare), (gst_esdsink_delay): Some small clean-ups; use GST_BOILERPLATE etc.
* gst/law/: Fix negotiation to deal with ANY/EMPTY caps instead of leaking.Wim Taymans2006-07-245-10/+23
| | | | | | | | | Original commit message from CVS: * gst/law/alaw-decode.c: (alawdec_getcaps): * gst/law/alaw-encode.c: (alawenc_getcaps), (gst_alawenc_chain): * gst/law/mulaw-decode.c: (mulawdec_getcaps): * gst/law/mulaw-encode.c: (mulawenc_getcaps): Fix negotiation to deal with ANY/EMPTY caps instead of leaking.
* gst/wavparse/gstwavparse.*: Use information from 'fact' chunk for length ↵Stefan Kost2006-07-244-41/+145
| | | | | | | | | | | | | | | calculation of compressed samples. Calculate... Original commit message from CVS: * gst/wavparse/gstwavparse.c: (gst_wavparse_reset), (gst_wavparse_other), (gst_wavparse_perform_seek), (gst_wavparse_get_upstream_size), (gst_wavparse_stream_headers), (gst_wavparse_add_src_pad), (gst_wavparse_stream_data), (gst_wavparse_pad_query): * gst/wavparse/gstwavparse.h: Use information from 'fact' chunk for length calculation of compressed samples. Calculate bps if bogus value is found in wav header (embeded mp2/mp3).
* Port udp plugin to win32 (#345288).Joni Valtanen2006-07-2413-46/+242
| | | | | | | | | | | | | | | | | | | | | | Original commit message from CVS: Based on patch by: Joni Valtanen <joni dot valtanen at movial fi> * configure.ac: * gst/udp/Makefile.am: * gst/udp/gstdynudpsink.c: (gst_dynudpsink_init), (gst_dynudpsink_finalize), (gst_dynudpsink_close): * gst/udp/gstdynudpsink.h: * gst/udp/gstmultiudpsink.c: (gst_multiudpsink_init), (gst_multiudpsink_finalize), (gst_multiudpsink_close): * gst/udp/gstmultiudpsink.h: * gst/udp/gstudp.c: (plugin_init): * gst/udp/gstudpsink.h: * gst/udp/gstudpsrc.c: (gst_udpsrc_init), (gst_udpsrc_create), (gst_udpsrc_start), (gst_udpsrc_stop): * gst/udp/gstudpsrc.h: * gst/udp/gstudpnetutils.c: (gst_udp_net_utils_win32_inet_aton), (gst_udp_net_utils_win32_wsa_startup): * gst/udp/gstudpnetutils.h: Port udp plugin to win32 (#345288).
* gst/rtsp/rtspconnection.c: Remove unwanted DEBUG line.Wim Taymans2006-07-243-1/+5
| | | | | | Original commit message from CVS: * gst/rtsp/rtspconnection.c: (rtsp_connection_send): Remove unwanted DEBUG line.
* gst/id3demux/: On second thought, it might be wiser and more efficient not ↵Tim-Philipp Müller2006-07-234-7/+17
| | | | | | | | | | | | to do tag registration from a streaming th... Original commit message from CVS: * gst/id3demux/gstid3demux.c: (plugin_init): * gst/id3demux/id3tags.c: (id3demux_add_id3v2_frame_blob_to_taglist): * gst/id3demux/id3tags.h: On second thought, it might be wiser and more efficient not to do tag registration from a streaming thread.
* gst/id3demux/id3tags.c: Put ID3v2 frames we can't parse as binary blobs into ↵Tim-Philipp Müller2006-07-233-4/+52
| | | | | | | | | | | | | private tags, so that they are not lost ... Original commit message from CVS: * gst/id3demux/id3tags.c: (id3demux_add_id3v2_frame_blob_to_taglist), (id3demux_id3v2_frames_to_tag_list): Put ID3v2 frames we can't parse as binary blobs into private tags, so that they are not lost when retagging, at least once id3v2mux has been taught to re-inject those frames again. See bug #334375.
* gst/avi/gstavidemux.c: Fix some leaks.Wim Taymans2006-07-213-1/+14
| | | | | | | | | Original commit message from CVS: * gst/avi/gstavidemux.c: (gst_avi_demux_parse_stream), (gst_avi_demux_process_next_entry): Fix some leaks. * gst/id3demux/id3tags.c: (id3demux_id3v2_frames_to_tag_list): Don't use \n in debug lines.
* docs/plugins/: Add annodex and icydemux, cleanup the sections a bitStefan Kost2006-07-203-67/+112
| | | | | | | Original commit message from CVS: * docs/plugins/gst-plugins-good-plugins-docs.sgml: * docs/plugins/gst-plugins-good-plugins-sections.txt: Add annodex and icydemux, cleanup the sections a bit
* sys/v4l2/gstv4l2object.c: If "device-name" is requested and the device is ↵Martin Szulecki2006-07-191-1/+5
| | | | | | | | | | | not open, try to temporarily open it to obt... Original commit message from CVS: Patch by: Martin Szulecki * sys/v4l2/gstv4l2object.c: (gst_v4l2_object_get_property_helper): If "device-name" is requested and the device is not open, try to temporarily open it to obtain this information (#342494).
* ext/taglib/gstid3v2mux.cc: Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION asAlex Lancaster2006-07-192-0/+71
| | | | | | | | Original commit message from CVS: Patch by: Alex Lancaster <alexl at users sourceforge net> * ext/taglib/gstid3v2mux.cc: Write GST_TAG_ENCODER and GST_TAG_ENCODER_VERSION as ID3v2 TSSE frames (#347898).
* ChangeLog surgery: mention fixed bugTim-Philipp Müller2006-07-191-1/+3
| | | | | Original commit message from CVS: ChangeLog surgery: mention fixed bug
* gst/avi/gstavimux.c: Respect mpegversion for "video/mpeg" and give message ↵Stefan Kost2006-07-182-1/+29
| | | | | | | | | in case of unhandled versions. Original commit message from CVS: * gst/avi/gstavimux.c: (gst_avi_mux_vidsink_set_caps): Respect mpegversion for "video/mpeg" and give message in case of unhandled versions.