summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog251
1 files changed, 249 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index ed5ebed6b..ad357c40f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,9 +1,256 @@
+=== release 1.6.3 ===
+
+2016-01-20 Sebastian Dröge <slomo@coaxion.net>
+
+ * configure.ac:
+ releasing 1.6.3
+
+2016-01-20 13:41:33 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * ext/vpx/gstvp8enc.c:
+ vp8enc: Ensure that we always have valid frame user data before using it
+ Otherwise we're going to dereference NULL pointers.
+
+2016-01-20 10:02:48 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * ext/vpx/gstvp8dec.c:
+ * ext/vpx/gstvp9dec.c:
+ vpxdec: Unref frame in all code paths of handle_frame()
+ https://bugzilla.gnome.org/show_bug.cgi?id=760666
+
+2016-01-19 22:49:20 +0100 Thibault Saunier <tsaunier@gnome.org>
+
+ * ext/vpx/gstvp8enc.c:
+ * ext/vpx/gstvp9enc.c:
+ vpxenc: Unref frame on ERROR
+ All code paths for handle_frame() must somehow take ownership of the frame, be
+ it by actually unreffing, forwarding the frame elsewhere or storing it for
+ later.
+ http://bugzilla.gnome.org/show_bug.cgi?id=760666
+
+2016-01-20 10:08:50 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * ext/vpx/gstvp9enc.c:
+ vp9enc: Return FLOW_ERROR when an error accures
+ FALSE would mean FLOW_OK
+ https://bugzilla.gnome.org/show_bug.cgi?id=760666
+
+2016-01-19 15:14:59 -0500 Nicolas Dufresne <nicolas.dufresne@collabora.com>
+
+ * sys/v4l2/gstv4l2object.c:
+ v4l2object: Don't set colorimetry for non YUV formats
+ Setting colormetry in caps for RGB have no meaning, but worst it
+ confuses the converters downstream.
+ https://bugzilla.gnome.org/show_bug.cgi?id=759624
+
+2016-01-19 14:57:03 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/wavparse/gstwavparse.c:
+ wavparse: Don't play anything after the end of the data chunk even when seeking
+ Especially in push mode we would completely ignore the size of the data chunk
+ when not stop position is given for the seek. Instead make sure that the end
+ offset is at most the end of the data chunk if known.
+ Without this we would output anything after the data chunk, possibly causing
+ loud noises if the media file is followed by an INFO chunk or an ID3 tag.
+
+2016-01-19 14:55:57 +0200 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/wavparse/gstwavparse.c:
+ wavparse: Don't do calculations with -1 offsets when handling SEGMENT events
+ We use that to signal "infinity", taking the difference between that and some
+ other value is not going to give us any useful result for the end offsets of
+ segments.
+
+2016-01-12 14:01:21 -0800 Aleix Conchillo Flaqué <aconchillo@gmail.com>
+
+ * gst/rtsp/gstrtspsrc.c:
+ rtspsrc: handle rtcp/srtcp caps properly when using interleaved data
+ We check the stream profile and use the proper RTCP caps:
+ application/x-srtcp if we are using a secure profile and
+ application/x-rtcp otherwise.
+ https://bugzilla.gnome.org/show_bug.cgi?id=760556
+
+2016-01-15 03:56:49 +0530 Nirbheek Chauhan <nirbheek@centricular.com>
+
+ * sys/osxaudio/gstosxaudioringbuffer.c:
+ * sys/osxaudio/gstosxcoreaudiohal.c:
+ osxaudio: Fix error handling when selecting/opening devices
+ Post an element error when the CoreAudio device cannot be selected or opened.
+ Also ensure that we post a GST_ERROR with more detail.
+
+2016-01-13 23:40:20 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/wavparse/gstwavparse.c:
+ wavparse: When flushing on EOS, don't process more data than the "data" size
+ Even if we have more data queued up when flushing than the size of the data
+ chunk, don't process and output it. If the data size is known, this likely
+ contains another chunk (e.g. an INFO chunk) or things like ID3 tags. Just
+ outputting them as if they were data is going to cause unexpected behaviour
+ and unpleasant audio noises.
+
+2016-01-11 16:29:55 +0000 Tim Sheridan <tim.sheridan@imgtec.com>
+
+ * gst/audioparsers/gstsbcparse.c:
+ sbcparse: Fix frame length calculation
+ SBC frame length calculation wasn't being rounded up to the nearest byte
+ (as specified in the A2DP 1.0 specification, section 12.9). This could
+ cause 'stereo' and 'joint stereo' mode SBC streams to have incorrectly
+ calculated frame lengths.
+ Incorrect frame length calculation causes frame coalescing to fail, as
+ subsequent frames in the stream aren't found in the expected locations.
+ https://bugzilla.gnome.org/show_bug.cgi?id=742446
+
+2016-01-15 11:36:35 +0000 Thibault Saunier <tsaunier@gnome.org>
+
+ * ext/vpx/gstvp8enc.c:
+ vp8enc: Return FLOW_ERROR when an error accures
+ FALSE would mean FLOW_OK
+ https://bugzilla.gnome.org/show_bug.cgi?id=760666
+
+2016-01-07 20:27:29 +0000 Tim-Philipp Müller <tim@centricular.com>
+
+ * gst/rtp/gstrtpvrawdepay.c:
+ rtpvrawdepay: fix major memory leak and performance issue
+ We call gst_rtp_buffer_get_payload() which creates a sub-buffer
+ of each input buffer, just to copy over metas, and then leak it.
+ https://bugzilla.gnome.org/show_bug.cgi?id=760289
+
+2015-12-25 11:41:19 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * gst/audiofx/gstscaletempo.c:
+ scaletempo: Free the various buffers in GstBaseTransform::stop()
+ Previously we leaked them completely, but as they're specific to the caps
+ freeing them in stop() instead of finalize() makes most sense.
+
+2015-12-17 16:03:04 +0100 Vincent Dehors <vincent.dehors@openwide.fr>
+
+ * gst/rtp/gstrtpj2kdepay.c:
+ rtpj2kdepay: Push one JPEG2000 frame per buffer, not a buffer list with multiple buffers
+ https://bugzilla.gnome.org/show_bug.cgi?id=758943
+
=== release 1.6.2 ===
-2015-12-14 Sebastian Dröge <slomo@coaxion.net>
+2015-12-14 19:50:07 +0100 Sebastian Dröge <sebastian@centricular.com>
+ * ChangeLog:
+ * NEWS:
+ * RELEASE:
* configure.ac:
- releasing 1.6.2
+ * 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-apetag.xml:
+ * docs/plugins/inspect/plugin-audiofx.xml:
+ * docs/plugins/inspect/plugin-audioparsers.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-cutter.xml:
+ * docs/plugins/inspect/plugin-debug.xml:
+ * docs/plugins/inspect/plugin-deinterlace.xml:
+ * docs/plugins/inspect/plugin-dtmf.xml:
+ * docs/plugins/inspect/plugin-dv.xml:
+ * docs/plugins/inspect/plugin-effectv.xml:
+ * docs/plugins/inspect/plugin-equalizer.xml:
+ * docs/plugins/inspect/plugin-flac.xml:
+ * docs/plugins/inspect/plugin-flv.xml:
+ * docs/plugins/inspect/plugin-flxdec.xml:
+ * docs/plugins/inspect/plugin-gdkpixbuf.xml:
+ * docs/plugins/inspect/plugin-goom.xml:
+ * docs/plugins/inspect/plugin-goom2k1.xml:
+ * docs/plugins/inspect/plugin-icydemux.xml:
+ * docs/plugins/inspect/plugin-id3demux.xml:
+ * docs/plugins/inspect/plugin-imagefreeze.xml:
+ * docs/plugins/inspect/plugin-interleave.xml:
+ * docs/plugins/inspect/plugin-isomp4.xml:
+ * docs/plugins/inspect/plugin-jack.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-multifile.xml:
+ * docs/plugins/inspect/plugin-multipart.xml:
+ * docs/plugins/inspect/plugin-navigationtest.xml:
+ * docs/plugins/inspect/plugin-oss4.xml:
+ * docs/plugins/inspect/plugin-ossaudio.xml:
+ * docs/plugins/inspect/plugin-png.xml:
+ * docs/plugins/inspect/plugin-pulseaudio.xml:
+ * docs/plugins/inspect/plugin-replaygain.xml:
+ * docs/plugins/inspect/plugin-rtp.xml:
+ * docs/plugins/inspect/plugin-rtpmanager.xml:
+ * docs/plugins/inspect/plugin-rtsp.xml:
+ * docs/plugins/inspect/plugin-shapewipe.xml:
+ * docs/plugins/inspect/plugin-shout2send.xml:
+ * docs/plugins/inspect/plugin-smpte.xml:
+ * docs/plugins/inspect/plugin-soup.xml:
+ * docs/plugins/inspect/plugin-spectrum.xml:
+ * docs/plugins/inspect/plugin-speex.xml:
+ * docs/plugins/inspect/plugin-taglib.xml:
+ * docs/plugins/inspect/plugin-udp.xml:
+ * docs/plugins/inspect/plugin-video4linux2.xml:
+ * docs/plugins/inspect/plugin-videobox.xml:
+ * docs/plugins/inspect/plugin-videocrop.xml:
+ * docs/plugins/inspect/plugin-videofilter.xml:
+ * docs/plugins/inspect/plugin-videomixer.xml:
+ * docs/plugins/inspect/plugin-vpx.xml:
+ * docs/plugins/inspect/plugin-wavenc.xml:
+ * docs/plugins/inspect/plugin-wavpack.xml:
+ * docs/plugins/inspect/plugin-wavparse.xml:
+ * docs/plugins/inspect/plugin-ximagesrc.xml:
+ * docs/plugins/inspect/plugin-y4menc.xml:
+ * gst-plugins-good.doap:
+ * win32/common/config.h:
+ Release 1.6.2
+
+2015-12-14 19:19:29 +0100 Sebastian Dröge <sebastian@centricular.com>
+
+ * po/af.po:
+ * po/az.po:
+ * po/bg.po:
+ * po/ca.po:
+ * po/cs.po:
+ * po/da.po:
+ * po/de.po:
+ * po/el.po:
+ * po/en_GB.po:
+ * po/eo.po:
+ * po/es.po:
+ * po/eu.po:
+ * po/fi.po:
+ * po/fr.po:
+ * po/gl.po:
+ * po/hr.po:
+ * po/hu.po:
+ * po/id.po:
+ * po/it.po:
+ * po/ja.po:
+ * po/lt.po:
+ * po/lv.po:
+ * po/mt.po:
+ * po/nb.po:
+ * po/nl.po:
+ * po/or.po:
+ * po/pl.po:
+ * po/pt_BR.po:
+ * po/ro.po:
+ * po/ru.po:
+ * po/sk.po:
+ * po/sl.po:
+ * po/sq.po:
+ * po/sr.po:
+ * po/sv.po:
+ * po/tr.po:
+ * po/uk.po:
+ * po/vi.po:
+ * po/zh_CN.po:
+ * po/zh_HK.po:
+ * po/zh_TW.po:
+ Update .po files
2015-12-14 19:12:53 +0100 Sebastian Dröge <sebastian@centricular.com>