gstreamer-plugins-rs/README.SUSE
Antonio Larrosa bfc85dc265 Accepting request 1153232 from home:alarrosa:branches:multimedia:libs
- Update to version 0.12.2:
  * Fixed
    - rtpgccbwe: Don't reset PTS/DTS to None as otherwise
      rtpsession won't be able to generate valid RTCP.
    - webrtcsink: Fix usage with 1.22.
  * Added
    - janusvrwebrtcsink: Add secret-key property.
    - janusvrwebrtcsink: Allow for string room ids and add
      string-ids property.
    - textwrap: Don't split on all whitespaces, especially not on
      non-breaking whitespace.
- Update to version 0.12.1:
  * Added
    - gtk4: Create a window for testing purposes when running in
      gst-launch-1.0 or if GST_GTK4_WINDOW=1 is set.
    - webrtcsink: Add msid property.
- Update to version 0.12.0:
  * Changed
    - ndi: ndisrc passes received data downstream without an
      additional copy, if possible.
    - webrtc: Cleanups to webrtcsrc/sink default signalling
      protocol, JavaScript implementation and server
      implementation.
    - webrtc: whipwebrtcsink is renamed to whipclientsink and
      deprecate old whipsink.
  * Fixed
    - gtk4: Fix Windows build when using EGL.
    - gtk4: Fix ARGB pre-multiplication with GTK 4.14. This
      requires building with the gtk_v4_10 or even better gtk_v4_14
      feature.

OBS-URL: https://build.opensuse.org/request/show/1153232
OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/gstreamer-plugins-rs?expand=0&rev=71
2024-02-29 13:19:27 +00:00

24 lines
669 B
Plaintext

In order to update the vendor files (including the special vendor file for
dav1d >= 1.3), follow these steps:
rm -Rf gst-plugins-rs
osc service mr
tar xv --zstd -f ../vendor.tar.zst .cargo
mv .cargo/config cargo_config
# Now let's prepare the special vendor file for dav1d >= 1.3
mv vendor.tar.zst vendor-original.tar.zst
pushd gst-plugins-rs
sed -i -e 's/^dav1d = "[0-9.]*"/dav1d = "0.10"/' video/dav1d/Cargo.toml
sed -i -e "s/'extra-deps': {'dav1d': \['>=1.0', '<1.3'\]}/'extra-deps': {'dav1d': ['>=1.3']}/" meson.build
popd gst-plugins-rs
osc service mr cargo_vendor
mv vendor.tar.zst vendor-for-dav1d-1.3.0.tar.zst
mv vendor-original.tar.zst vendor.tar.zst