=== release 1.28.2 ===

2026-04-07 20:02:23 +0100  Tim-Philipp Müller <tim@centricular.com>

	* gstreamer.doap:
	* meson.build:
	  Release 1.28.2

2026-03-31 14:39:52 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstqueue.c:
	  queue: Fix potential use-after-free in log function
	  Avoid accessing already pushed event object
	  Regression introduced by
	  https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10068
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/11192>

2026-03-18 23:42:43 +0100  Tim-Philipp Müller <tim@centricular.com>

	* po/LINGUAS:
	* po/kk.po:
	* po/pt_BR.po:
	* po/sv.po:
	* po/zh_CN.po:
	  gstreamer: update translations
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/11077>

2026-03-10 23:05:17 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* libs/gst/base/gstbaseparse.c:
	  baseparse: Fix out_buffer leak in frame_free and missing ref in frame_copy
	  gst_base_parse_frame_free() only unrefs frame->buffer but not
	  frame->out_buffer. If finish_frame() exits early (e.g. due to a
	  g_return_val_if_fail check on adapter size, or via the scanning path),
	  out_buffer is left non-NULL and leaked when frame_free() zeroes the
	  frame struct via memset without unreffing it.
	  This can be triggered via h264parse (and other video parsers) in the
	  packetized path: gst_h264_parse_parse_frame() takes a buffer from the
	  frame_out adapter and sets frame->out_buffer. If finish_frame() then
	  fails its precondition checks, that buffer is never freed.
	  Also fix gst_base_parse_frame_copy() which uses g_memdup2() to copy
	  the frame struct, giving the copy the same out_buffer pointer as the
	  original, but only adds a ref for buffer and not for out_buffer.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/11056>

2026-03-07 11:47:29 -0500  Xavier Claessens <xclaessens@netflix.com>

	* gst/gstbin.c:
	  bin: iterator is not nullable
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/11036>

2026-01-29 17:02:49 +0900  Seungha Yang <seungha@centricular.com>

	* libs/gst/base/gstbaseparse.c:
	  baseparse: Preserve upstream buffer duration if possible
	  When upstream buffer timestamps are reliable and subclass has
	  timestamp interpolation disabled, preserve the upstream buffer
	  duration instead of replacing it with GST_CLOCK_TIME_NONE.
	  Subclasses typically derive buffer duration from stream header
	  information, but this can be inaccurate for variable framerate
	  streams or when the signaled framerate itself is unreliable. By
	  forwarding the original buffer duration, this change allows
	  subclasses to handle timing more accurately in such cases.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/11016>

2026-03-09 00:31:25 +0300  Vitaly Vlasov <vnigtha@gmail.com>

	* plugins/elements/gstfilesink.c:
	  filesink: Fix wrong open() in overwrite mode
	  Fix gst_fopen() when File-sink-file-mode=overwrite is selected on non Windows host
	  Fixes  #4946
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10990>

2026-03-03 18:24:41 -0300  L. E. Segovia <amy@centricular.com>

	* gst/gstregistry.c:
	  registry: Skip recursion into and from .dSYM bundles
	  The filtering of dSYM bundles was done *after* an early return that approved
	  non-dot directories.
	  For good measure, let's also add a filtering entry to ban directories when their
	  parent is a dSYM bundle.
	  See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10850#note_3357038
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10970>

2026-01-29 12:34:46 +0100  Fabian Orccon <forccon@fluendo.com>

	* gst/gstsystemclock.c:
	* tests/validate/gst-tester.c:
	  all: GThreadFunc return type fixes
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10955>

2026-02-26 01:53:07 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.28.1

=== release 1.28.1 ===

2026-02-26 01:44:06 +0000  Tim-Philipp Müller <tim@centricular.com>

	* gstreamer.doap:
	* meson.build:
	  Release 1.28.1

2026-02-23 19:42:18 +0900  Seungha Yang <seungha@centricular.com>

	* gst/gstutils.c:
	  gst: Add explanatory comment to call_async implementation
	  Clarify why notify is conditionally called for deprecated
	  gst_element_call_async()
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10872>

2026-02-20 09:28:15 +0200  Sebastian Dröge <sebastian@centricular.com>

	* tools/gst-stats.c:
	  gst-stats: Also allow ANSI colored logs without 0x in front of the thread id
	  The non-ANSI colored regex already handled this correctly and this was required
	  for Windows before already anyway.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10857>

2026-02-19 13:08:39 -0300  L. E. Segovia <amy@centricular.com>

	* gst/gstregistry.c:
	  registry: Skip .dSYM bundles when loading plugins, try 2
	  If paths within the .dSYM folder are being passed, the current filter won't cover them.
	  See https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10466#note_3330939
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10853>

2026-02-12 02:51:07 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstregistry.c:
	* meson.build:
	  gstreamer: Stop using deprecated G_MODULE_SUFFIX
	  It's deprecated on macOS because shared libs can be either .so or
	  .dylib. We already account for that, we might as well stop using
	  G_MODULE_SUFFIX and get rid of deprecation warnings.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10807>

2026-01-28 11:54:11 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* meson.build:
	  gstcheck: Disable fork on tvOS and watchOS
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10807>

2026-01-28 11:45:20 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/meson.build:
	* libs/gst/helpers/ptp/meson.build:
	* meson.build:
	  meson: Deprecate `system = 'ios'` in cross files, use subsystem
	  Since we require Meson 1.4.0, we can now use subsystem names (added in
	  1.2.0).
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10807>

2023-04-02 16:53:45 +0100  Tim-Philipp Müller <tim@centricular.com>

	* scripts/dist-common-files.py:
	* scripts/meson.build:
	  modules: dist common files from monorepo root
	  Less noise when making releases, and just need to maintain one copy.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10822>

2026-02-15 17:45:19 +0000  Tim-Philipp Müller <tim@centricular.com>

	* README.md:
	  modules: remove subproject README.md from git
	  Will be added to the tarballs based on the monorepo README on dist.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10822>

2026-02-15 17:20:59 +0000  Tim-Philipp Müller <tim@centricular.com>

	* RELEASE:
	  modules: remove RELEASE from git, will be generated from template on dist
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10822>

2026-02-15 15:02:07 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	  modules: Remove NEWS from git which is generated from full release notes
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10822>

2026-02-13 19:50:56 +0900  Seungha Yang <seungha@centricular.com>

	* tests/check/libs/bitwriter.c:
	  tests: bitwriter: Fix leak in test
	  Fix leak in test revealed after bugfix. The data returned from
	  gst_bit_writer_reset_and_get_data() must be freed with g_free()
	  as documented.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10805>

2026-02-13 15:57:13 +0900  Seungha Yang <seungha@centricular.com>

	* libs/gst/base/gstbitwriter.c:
	  bitwriter: Steal owned data in reset_and_get_data()
	  Avoid unnecessary data copy/free by returning the owned
	  data directly to the caller
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10805>

2026-02-11 16:49:02 +0900  Seungha Yang <seungha@centricular.com>

	* libs/gst/base/gstaggregator.c:
	  aggregator: Handle gap event before segment
	  If gap events are received before segment event, log the situation and
	  gracefully return FALSE instead of relying on the critical warning path
	  in gst_segment_clip()
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10789>

2026-02-05 16:31:30 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstmultiqueue.c:
	  multiqueue: reverse playback: use segment stop position as start time
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10770>

2026-02-05 16:24:33 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstelements_private.c:
	  filesink: Report write error correctly on Windows
	  Propagate write() return value from the writev emulation path
	  as intended
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10758>

2026-02-05 15:48:30 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstelements_private.c:
	  filesink: Add debug category to file write helper
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10758>

2026-02-02 09:56:59 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstaggregator.h:
	  aggregator: Various introspection annotations / docs fixes for vfuncs
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10723>

2026-01-26 23:21:06 +0800  He Junyan <junyan.he@intel.com>

	* gst/gstcaps.c:
	  caps: gst_caps_append_structure should not allow NULL structure
	  This check can also help to fix the possible memory leak of features
	  in gst_caps_append_structure_full() when the structure is NULL.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10689>

2026-01-28 13:53:28 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/net/gstptpclock.c:
	  ptpclock: Initialize PTP message to avoid invalid uninitialized variable warning
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10656>

2026-01-28 11:57:56 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/helpers/ptp/parse.rs:
	  ptpclock: Fix copy-paste mistake in error messages
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10656>

2026-01-28 11:52:13 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/helpers/ptp/parse.rs:
	* libs/gst/net/gstptpclock.c:
	  ptpclock: Fix potential out-of-bounds read when parsing ANNOUNCE messages
	  The required length of the message payloader after the common header is 30
	  bytes, not 20 bytes.
	  Also fix the same bug in the Rust code, but here it wouldn't have caused any
	  other problems than a less optimal error message because there is actual bounds
	  checking.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4871
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10656>

2026-01-28 11:49:41 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstdatetime.c:
	* gst/gsturi.c:
	  gst: Fix a couple of new const-ness warnings around strstr() usage
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4871
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10656>

2026-01-14 23:47:04 +0100  Ruben Gonzalez <rgonzalez@fluendo.com>

	* libs/gst/base/gsttypefindhelper.c:
	  typefindhelper: EOS case explained in more details
	  Related to https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4848
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10632>

2026-01-09 20:17:52 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	  input-selector: don't wait for active pad when eos (active-segment mode)
	  When `sync-mode` is set to `active-segment` and current pad is not active,
	  don't wait depending on the active segment runtime if the active pad is EOS.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10621>

2026-01-09 18:20:51 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	  input-selector: fix regression receiving eos event
	  When a pad receives an eos event, it must first check for if the active pad
	  should be changed. Failure to do that could lead to the event not being
	  forwarded if current pad is the last pad remaining and it was not active
	  before.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10621>

2026-01-08 11:54:52 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	  input-selector: don't consider pad being released checking for eos
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10621>

2026-01-06 15:06:57 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	  input-selector: gracefully handle active pad disappearance
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10621>

2026-01-06 11:43:59 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	  input-selector: fix race condition selecting next active pad
	  When a pad is being released, the pad is marked as flushing and the selector
	  lock is released before the pad is removed from the element pad list. This is
	  necessary so any in-progress event or buffer handling for this pad terminates
	  before the pad is deactivated.
	  If another thread was trying to select the next active pad at this particular
	  moment, it could end up picking the pad being released before it was removed
	  from the element pad list.
	  This commit adds a flag which is set when the pad is being released, so it won't
	  get picked as the next active pad.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10621>

2026-01-27 17:10:54 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.28.0

=== release 1.28.0 ===

2026-01-27 17:02:33 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* README.md:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.28.0

2026-01-26 18:51:01 +0530  Sanchayan Maity <sanchayan@centricular.com>

	* libs/gst/base/gstaggregator.h:
	  aggregator: Annotate some GstAggregatorClass methods
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10596>

2026-01-26 14:54:59 +0530  Sanchayan Maity <sanchayan@centricular.com>

	* gst/gstelement.h:
	  element: Annotate request_new_pad
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10596>

2026-01-25 17:17:25 +0000  Tim-Philipp Müller <tim@centricular.com>

	* po/LINGUAS:
	* po/ar.po:
	* po/bg.po:
	* po/de.po:
	* po/es.po:
	* po/hr.po:
	* po/nl.po:
	* po/pl.po:
	* po/ro.po:
	* po/sl.po:
	* po/sr.po:
	* po/uk.po:
	  gstreamer: update translations
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10598>

2026-01-08 22:16:19 +0100  Ruben Gonzalez <rgonzalez@fluendo.com>

	* plugins/elements/gstidentity.c:
	  identity: cosmetic change to mimic fakesink
	  Remove extra space at chain log:
	  ```
	  $ gst-launch-1.0 -v videotestsrc num-buffers=1
	  ! identity silent=false name=i1 ! fakesink name=i2 silent=false
	  ...pts: 0:00:00.000000000, duration: 0:00:00.033333333, offset: 0, offset_end:  1, flags: 00000040..
	  ...pts: 0:00:00.000000000, duration: 0:00:00.033333333, offset: 0, offset_end: 1, flags: 00000040...
	  ```
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10518>

2026-01-07 10:51:59 +0100  Samuel Thibault <samuel.thibault@ens-lyon.org>

	* gst/gstinfo.c:
	  gstinfo: Fix build on systems where pthread_t is int
	  Otherwise we get
	  error: returning ‘pthread_t’ {aka ‘int’} from a function with return type
	  ‘GstTid’ {aka ‘void *’} makes pointer from integer without a cast [-Wint-conversion]
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10508>

2026-01-05 20:20:51 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.27.90

=== release 1.27.90 ===

2026-01-05 20:15:10 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.27.90

2026-01-05 18:57:01 +0000  Tim-Philipp Müller <tim@centricular.com>

	* po/af.po:
	* po/ast.po:
	* po/az.po:
	* po/be.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/fur.po:
	* po/gl.po:
	* po/hr.po:
	* po/hu.po:
	* po/id.po:
	* po/it.po:
	* po/ja.po:
	* po/ka.po:
	* po/ko.po:
	* po/lt.po:
	* po/lv.po:
	* po/nb.po:
	* po/nl.po:
	* po/pl.po:
	* po/pt_BR.po:
	* po/ro.po:
	* po/ru.po:
	* po/rw.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_TW.po:
	  gstreamer: update translations
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10497>

2025-12-30 17:53:22 -0500  Doug Nazar <nazard@nazar.ca>

	* tests/check/elements/queue.c:
	  tests: Fix several memory leaks
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10476>

2025-12-28 17:28:22 +0000  L. E. Segovia <amy@centricular.com>

	* gst/gstregistry.c:
	  registry: Skip .dSYM bundles when loading plugins
	  The .dylibs here aren't actual binaries, they're mach-O files with debug
	  sections only. These will be naturally skipped/blacklisted, but after a
	  long stream of dlopen errors.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10466>

2025-12-28 17:27:10 +0000  L. E. Segovia <amy@centricular.com>

	* libs/gst/helpers/ptp/meson.build:
	  ptp: Fix helper test naming convention and gate it
	  This ensures it doesn't get built unless -Dtests=enabled, and that its symbols
	  don't get confused for gst-ptp-helper's.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10466>

2025-12-26 18:03:19 -0500  Doug Nazar <nazard@nazar.ca>

	* tests/check/gst/gstinfo.c:
	  info: Increase test interval when running under valgrind
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10456>

2025-12-19 15:40:26 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* meson.build:
	  meson: Solve some cyclic dependencies caused by test-only deps
	  gstreamer => gobject-introspection => cairo => fontconfig => freetype2 => harfbuzz => cairo
	  gst-plugins-base => libdrm => cairo => fontconfig => freetype2 => harfbuzz => cairo
	  gst-plugins-good => cairo => librsvg => cairo
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10422>

2025-12-19 15:19:42 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* meson.build:
	  meson: Disable introspection option on glib
	  Allows us to update glib and gobject-introspection. We don't use the
	  new introspection infrastructure merged in glib anyway.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10422>

2025-12-19 18:49:46 +0100  Alicia Boya García <aboya@igalia.com>

	* gst/gstutils.c:
	  utils: Fix race in gst_element_link_pads_filtered()
	  gst_element_link_pads_filtered() can occur at the same time the bin
	  is in the middle of a PAUSED->PLAYING transition.
	  Since before this patch the capsfilter state lock bit wasn't being set,
	  in the case of a failure to link it was possible for the state change to
	  NULL in gst_element_link_pads_filtered() to race against a state change
	  to PLAYING inside gst_bin_change_state_func() and lose.
	  This caused errors when the unreffed capsfilter was disposed moments
	  later, as the element dispose function found the element to be
	  accidentally in PLAYING state.
	  As of writing, this particular race reproduces consistently when running
	  check.gst-plugins-good.elements_qtdemux.test_qtdemux_sample_interleaving
	  under valgrind with the the default fair scheduler (valgrind
	  --fair-sched=try), both locally and in the CI. This patch fixes it.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10383>

2025-12-18 09:19:52 +0100  Carlos Falgueras García <cfalgueras@fluendo.com>

	* plugins/elements/gstqueue.c:
	  queue: Log the status of the queue at debug level
	  Log the queue status at "GST_LEVEL_DEBUG" when it's empty or full by
	  reusing the current macro "STATUS()".
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10403>

2025-12-15 15:08:02 -0500  Daniel Morin <daniel.morin@collabora.com>

	* gst/gstvalue.c:
	* gst/gstvalue.h:
	* tests/check/gst/gstcaps.c:
	* tests/check/gst/gststructure.c:
	* tests/check/gst/gstvalue.c:
	* tools/gst-inspect.c:
	  gst: Rename GstValueSet to GstValueUniqueList
	  GObject-Introspection has an issue with GstSet because anything that starts with
	  'gst_value_set' becomes something that belongs to 'GstSet' but we have
	  gst_value_set_bitmask and gst_value_set_SOMETHING (), which all would become
	  methods of GstSet.
	  To avoid this, rename GstSet (aka GstValueSet) to GstUniqueList (aka
	  GstValueUniqueList).
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4813
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10384>

2025-12-13 22:17:41 +0100  François Laignel <francois@centricular.com>

	* plugins/elements/gstinputselector.c:
	* plugins/elements/gstinputselector.h:
	  input-selector: implement a two-phase sinkpad switch
	  Switching the sinkpad was racy: when a new sinkpad was selected, previous
	  active sinkpad could continue pushing events or buffers, while the new sinkpad
	  already started pushing its sticky events, leading to inconsistencies
	  downstream.
	  This commit implements a a two-phase switch approach:
	  1. When the user selects the active pad, it is first set as pending.
	  2. Functions handling buffers or events first check whether a new pad is pending
	  activation, in which case the new pad activation is commited.
	  3. After completing step 2, the functions handles the buffer or event.
	  The active pad can not change before the buffer or event is pushed.
	  Mutability of the pending pad is protected by SELECTOR_LOCK.
	  Mutability of the active pad is protected by a dedicated RW lock which can be
	  locked independently from SELECTOR_LOCK and can prevent active pad changes when
	  that would interfere with current processing.
	  The RW lock allows preventing the active_pad from being changed while we
	  are processing a buffer or event.
	  Only `gst_input_selector_maybe_commit_active_pad ()` can get this lock in
	  writer mode for a short period of time (committing the `pending_active_pad`
	  to `active_pad`). Other concurrent code paths lock it in reader mode.
	  When a `pending_active_pad` is available (and only in that case),
	  code paths calling `gst_input_selector_maybe_commit_active_pad ()` would
	  hang until the lock is available for writer mode, which is expected since
	  their processing should be performed with respect to the expected `active_pad`.
	  Note that a `GRecMutex` was also considered to prevent possible deadlocks
	  in callbacks, but only a `GRWLock` can deal with the concurrency which occurs
	  during preroll.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10204>

2025-12-09 19:13:20 +0000  Tim-Philipp Müller <tim@centricular.com>

	* meson.build:
	  Back to development after 1.27.50

=== release 1.27.50 ===

2025-12-09 19:08:48 +0000  Tim-Philipp Müller <tim@centricular.com>

	* NEWS:
	* RELEASE:
	* gstreamer.doap:
	* meson.build:
	  Release 1.27.50

2025-12-05 11:19:25 +0200  Sebastian Dröge <sebastian@centricular.com>

	* libs/gst/base/gstbasesrc.c:
	  basesrc: Fix decide allocation fallback
	  Fallback to generic pool, even if the change to the config was validated. Pools
	  may have other restrictions that may render them unusable.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10298>

2025-12-04 16:48:37 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* libs/gst/base/gstbasetransform.c:
	  basetransform: Fix decide allocation fallback
	  Fallback to generic pool, even if the change to the config was validated. Pools
	  may have other restrictions that may render them unusable.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10298>

2025-11-28 14:12:53 -0600  Olivier Crête <olivier.crete@collabora.com>

	* tools/gst-inspect.c:
	  gst-inspect: Pretty print tensor caps
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9109>

2025-08-03 21:39:36 -0400  Daniel Morin <daniel.morin@collabora.com>

	* libs/gst/base/gstbasetransform.c:
	  basetransform: Explicitly set sinkpad flag to GST_PAD_FLAG_ACCEPT_INTERSECT
	  - Note this is NOT a breaking change.
	  - Base transform accept caps evaluation is based on intersection between caps
	  and template while the default behaviour should be to verify that caps is a
	  subset of the template. There's a specific pad flag to indicate accept caps
	  should be based on intersect (GST_PAD_FLAG_ACCEPT_INTERSECT). Since alot of
	  elements base based on bastransform and the expected behaviour from the base
	  class to evaluate accept caps is to use intersect we set the flat
	  GST_PAD_FLAG_ACCEPT_INTERSECT inside gst_base_transform_init() on the sinkpad
	  and inside gst_base_transform_acceptcaps_default() we use interect if the flag
	  is set otherwise we use gst_caps_is_subset (caps, template). This way
	  basetransform will honor the flag and allow element that want accept caps to
	  be base on subset to clear this flag.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9109>

2025-10-30 17:03:35 -0400  Daniel Morin <daniel.morin@collabora.com>

	* docs/random/caps_grammar:
	  doc: adding caps grammar doc
	  - Include new grammar for GST_TYPE_SET
	  - Converted doc to markdown
	  - Updated grammar description based on what exist.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10262>

2025-07-18 15:14:52 -0400  Daniel Morin <daniel.morin@collabora.com>

	* tests/check/gst/gstcaps.c:
	* tests/check/gst/gststructure.c:
	* tests/check/gst/gstvalue.c:
	  test: Tests for GstSet
	  - tests for GstSet
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10262>

2025-07-29 09:12:46 -0400  Daniel Morin <daniel.morin@collabora.com>

	* gst/gststructure.c:
	  gststructure: fix issue when structure contain GST_TYPE_SET
	  - 'set' already use cast annotation for divisor, we don't add another one, to
	  avoid generating '(set)(/set){}'.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10262>

2025-11-28 14:24:53 -0500  Daniel Morin <daniel.morin@collabora.com>

	* gst/gstvalue.c:
	  gstvalue: remove code duplication from GstList
	  - Improve code maintainability by removing duplicated code
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10262>

2025-07-18 15:06:03 -0400  Daniel Morin <daniel.morin@collabora.com>

	* gst/gst_private.h:
	* gst/gststructure.c:
	* gst/gstvalue.c:
	* gst/gstvalue.h:
	  gstvalue: adding GstSet
	  - Adding GstSet which reuse list annotation `{}`
	  - Add new annotation to type-cast container type.
	  `(default_type/container_type){}`. default_type and container_type are both
	  optional.
	  Examples:
	  `(int/set){1}`
	  `(/set){1}`
	  `(int)`
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10262>

2025-12-02 18:58:29 +0100  Christoph Reiter <reiter.christoph@gmail.com>

	* plugins/elements/gstfilesink.c:
	  gstfilesink: fix the build with recent mingw-w64
	  The build fails with:
	  /clang64/include/unistd.h:59:5: error: conflicting types for '_chsize'
	  59 | int ftruncate(int, off_t)
	  since ftruncate is redefined before unistd.h is included.
	  Avoid it by including the system headers first.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10268>

2025-12-01 12:53:46 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gststreams.c:
	* gst/gststreams.h:
	  streams: Add GST_STREAM_TYPE_METADATA for metadata streams
	  And handle it inside parsebin and tsdemux.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10249>

2025-11-24 19:42:58 +0900  Haejung Hwang <haejung.hwang@lge.com>

	* gst/gstpipeline.c:
	  gstpipeline: Improve resource cleanup logic for clock objects
	  Clarify and strengthen object release handling by:
	  -Use gst_clear_object() for NULL-safe unref and to avoid dangling pointers
	  -Ensure proper refcounting when reusing cur_clock
	  -Limit clock scope to where it’s needed for base-time and clock recalculation
	  -Fix memory leak in error path by releasing cur_clock
	  Reason:
	  This change makes cleanup more predictable and prevents scenarios where two
	  pointers could reference the same object, ensuring each resource is released
	  only once and pointers are invalidated after use. This improves robustness and
	  maintains consistent object lifetime management
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10179>

2025-11-27 10:23:25 -0500  Nicolas Dufresne <nicolas.dufresne@collabora.com>

	* gst/gstvalue.c:
	  gstvalue: Fix GstAllocationParams string convertion on 32bit
	  The GstAllocationParams structure uses gsize, which is not always 64bit. When
	  passed to a vararg it must be casted, so it uses the right amount of space.
	  Not doing so lead to crash when using this feature on 32bit plaforms.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10222>

2025-11-26 20:49:42 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstdeviceprovider.c:
	  device-provider: Fix typos in documentation
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-11-25 18:47:48 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* tests/check/gst/gstdevice.c:
	  tests/gstdevice: Unbreak the test monitor provider
	  The test provider with "monitoring support" doesn't emit any devices
	  when started, but it does emit devices when probed (because it wasn't
	  started). That's a broken device provider implementation, which caused
	  the test to break when we started doing async device monitoring.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-11-26 18:27:23 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstdevicemonitor.c:
	  device-monitor: Use GSList for started_providers for thread-safety
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-09-16 13:20:08 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstdevicemonitor.c:
	* tests/check/gst/gstdevice.c:
	  device-monitor: Start providers in a separate thread
	  This avoids blocking when gst_device_monitor_start() is called, which
	  avoids each app having to spawn a separate thread just to start device
	  monitoring. This is especially important on Windows, where device
	  probing can take several seconds.
	  Calling gst_device_monitor_get_devices() immediately after still does
	  the right thing; the existing locking still applies.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-11-25 14:04:19 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstmessage.c:
	* gst/gstmessage.h:
	  gstmessage: Add GST_MESSAGE_DEVICE_MONITOR_STARTED
	  In the next commit, this will be used to signal that the device
	  monitor has completed async startup.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-11-11 14:37:39 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* tests/check/gst/gstdevice.c:
	  tests: Move gstdevice from fail_unless to ck_assert
	  This is better, because ck_assert_*_eq etc will print both arguments
	  when the comparison fails. fail_unless_equals_int etc exist, but the
	  there's no equivalent for ck_assert_int_gt etc.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9698>

2025-10-28 20:09:35 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstinfo.c:
	* gst/gstinfo.h:
	  gstinfo: Add convenience macros around GstLogContext for logging once
	  The purpose is to avoid having to add boilerplate to every file/plugin
	  where you want to add a log message which will be printed exactly
	  once, with the default settings for GstLogContext.
	  Somehow, this is also faster than using the explicit API:
	  GST_WARNING_ONCE is 15% faster than GST_CTX_WARNING
	  The macros are the only publicly-documented API, the functions that
	  are wrapped by the macros are not meant to be used directly, except by
	  bindings.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9939>

2025-11-27 03:33:06 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstinfo.h:
	  gstinfo: Fix some mistakes and typos in the logging macro docs
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9939>

2025-11-24 14:03:50 -0300  Thibault Saunier <tsaunier@igalia.com>

	* gst/gsttaskpool.h:
	  videoconvertscale: add support for task pool context
	  This allows applications to provide a shared task pool via context for
	  multi-threaded video conversion, enabling better control over thread
	  management across multiple elements.
	  The element now implements set_context() to receive task pools and uses
	  them when creating video converters. If no n-threads property is explicitly
	  set, the element will automatically use the max threads from the provided
	  shared task pool.
	  A new test verifies the task pool is actually used by the video converter
	  during processing.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10047>

2025-11-11 20:55:41 -0500  Thibault Saunier <tsaunier@igalia.com>

	* gst/gsttaskpool.c:
	* gst/gsttaskpool.h:
	* tests/check/gst/gstcontext.c:
	  gsttaskpool: add task pool context type and helper API
	  Add GST_TASK_POOL_CONTEXT_TYPE ("gst.task.pool") well-known context
	  with helper functions gst_context_set/get_task_pool() for
	  pipeline-scoped task pool sharing between elements.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10047>

2025-01-08 09:29:13 -0500  Xavier Claessens <xclaessens@netflix.com>

	* gst/gstsystemclock.c:
	* gst/gstsystemclock.h:
	  GstClock: Add gst_clock_is_system_monotonic_clock
	  It was duplicated in many places and can be useful outside of GStreamer
	  as well.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/8257>

2025-11-25 18:29:12 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gststreamcollection.c:
	  streamcollection: Fix race condition between disconnecting notify proxy and notifications
	  It can happen that a GstStream gets notified at the very same time as a
	  collection that contains it is being disposed. When timing is bad this can end
	  up using an already freed GstStreamCollection for proxying the signal.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10196>

2025-11-25 18:20:37 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gststreamcollection.c:
	  streamcollection: Use a GstVecDeque instead of a GQueue for the streams
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10196>

2022-06-11 16:19:57 +0900  Camilo Celis Guzman <camilo@pexip.com>

	* libs/gst/check/libcheck/check_run.c:
	  libcheck: use SIGABRT instead of SIGKILL on timeout
	  This allows user-level signal handler to catch this if necessary.
	  Co-authored-by: Frederik Vestre <frederik.vestre@pexip.com>
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/2585>

2025-11-25 09:33:07 +0900  Seungha Yang <seungha@centricular.com>

	* docs/plugins/gst_plugins_cache.json:
	  clocksync: Update plugin docs cache
	  Update for new rate property and resync signal
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7463>

2025-11-24 15:30:55 +0900  Seungha Yang <seungha@centricular.com>

	* tests/check/elements/clocksync.c:
	  tests: clocksync: Add QoS test with custom rate
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7463>

2025-11-20 19:14:25 +0900  Seungha Yang <seungha@centricular.com>

	* tests/examples/clocksync/clocksync-resync.c:
	* tests/examples/clocksync/meson.build:
	* tests/examples/meson.build:
	  examples: Add clocksync's resync signal example
	  Demonstrates the resync signal usage
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7463>

2025-11-11 16:14:50 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstclocksync.c:
	  clocksync: Add resync action signal
	  Adding a new action signal so that clocksync can recalculate
	  ts-offset dynamically without state change
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7463>

2024-09-06 21:42:18 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstclocksync.c:
	* plugins/elements/gstclocksync.h:
	* tests/check/elements/clocksync.c:
	  clocksync: Add rate property
	  Adding rate property so that clocksync can synchronize
	  buffer running time against pipeline clock with specified rate factor.
	  This property can be useful if users want to throttle down pipeline
	  throughput, such as a non-realtime transcoding pipeline
	  where the pipeline's CPU and/or hardware resource consumption
	  needs to be limited.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/7463>

2025-11-20 20:52:08 -0500  Doug Nazar <nazard@nazar.ca>

	* gst/gstinfo.h:
	  gstinfo: Force comparision to same types
	  warning: equality comparison between function pointer and void pointer ('::GstLogFunction' (aka 'void (*)
	  (_GstDebugCategory *, GstDebugLevel, const char *, const char *, int, _GObject *, _GstDebugMessage *, void *)')
	  and 'void *') [-Wpedantic]
	  263 |   gst_debug_add_log_function (_peel_func, _peel_user_data, _peel_notify);
	  |   ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	  /usr/include/gstreamer-1.0/gst/gstinfo.h:598:14: note: expanded from macro 'gst_debug_add_log_function'
	  598 |   if ((func) == (void *) gst_debug_log_default) {    \
	  |       ~~~~~~ ^  ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10165>

2025-11-07 19:29:24 -0300  L. E. Segovia <amy@centricular.com>

	* gst/gst.h:
	* gst/gstcpuid.c:
	* gst/gstcpuid.h:
	* gst/meson.build:
	  gst: implement Orc-less cpuid routine for selecting asm routines
	  This commit removes the use of Orc's default target machinery as a way
	  to do CPUID detection on x86 and Arm. Instead I port xsimd's CPU
	  detection routine to C, cleaning up the instruction sets we don't use,
	  and also adding support for GCC/Clang's cpuid and xgetbv builtins.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10004>

2025-11-17 14:58:16 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstutils.c:
	  utils: Annotate temp array in gst_calculate_linear_regression() as such
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10108>

2025-10-28 17:03:30 +0530  Nirbheek Chauhan <nirbheek@centricular.com>

	* gst/gstinfo.c:
	* gst/gstinfo.h:
	  gstinfo: Forbid GST_LEVEL_MEMDUMP for GstLogContext logging
	  This wasn't hooked up correctly, and it's not clear how to implement
	  this without strong trade-offs. Forbid for now, and we can add it
	  later if needed.
	  Fixes https://gitlab.freedesktop.org/gstreamer/gstreamer/-/issues/4722
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9936>

2025-11-12 10:12:22 +0200  Sebastian Dröge <sebastian@centricular.com>

	* gst/gstobject.c:
	* gst/gstobject.h:
	* tests/check/gst/gstobject.c:
	  object: Add gst_object_get_toplevel() to get the toplevel object
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10075>

2025-11-13 11:00:58 +0000  Philippe Normand <philn@igalia.com>

	* gst/gst.c:
	* gst/gst.h:
	* tests/check/gst/gst.c:
	  gst: Add gst_check_version() utility function
	  Useful for version runtime checks.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/9915>

2025-11-12 13:25:16 +0100  Linus Svensson <linussn@axis.com>

	* gst/gstcaps.c:
	* gst/gstcaps.h:
	  caps: Correct the cast for const GstCaps
	  This fixes projects that compile with -Wcast-qual.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10076>

2025-11-12 13:10:58 +0100  Linus Svensson <linussn@axis.com>

	* gst/gstinfo.h:
	  info: Remove redundant ';'
	  This fixes projects that compile with -Wpedantic.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10076>

2025-11-11 20:12:41 +0900  Seungha Yang <seungha@centricular.com>

	* plugins/elements/gstqueue.c:
	  queue: Use GST_PTR_FORMAT everywhere
	  Prints detailed information about the object instead of the pointer
	  address
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10068>

2025-11-11 11:55:52 +0100  Linus Svensson <linussn@axis.com>

	* gst/gstvalue.c:
	  value: Add missing for symbol for builds without asserts/checks
	  gst_value_list_or_array_are_compatible needs to be defined if either
	  g_assert or glib_checks are turned on, and not if both are enabled.
	  Part-of: <https://gitlab.freedesktop.org/gstreamer/gstreamer/-/merge_requests/10069>

2025-06-11 16:21:35 +0900  dongjoo.kim <dongjoo.kim@lge.com>
[--snip--]
