Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.freedesktop.org/gstreamer/gst-plugins-rs.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2021-04-13clippy passFrançois Laignel
2021-04-13post fix-getters manual updatesFrançois Laignel
2021-04-12fix-getters-{def,calls} passFrançois Laignel
2021-03-25sodium: Pass &Path instead of &PathBufSebastian Dröge
2021-03-21threadshare: Update to socket2 0.4Sebastian Dröge
2021-03-09Update for the subclassing glib/gstreamer bindings API changesSebastian Dröge
2021-03-09Update pretty-assertions to 0.7, async-tungstenite to 0.13 and num-rational ↵Sebastian Dröge
to 0.4 Also get rid of the funty workaround as nom now depends on the right version.
2021-03-08threadshare: Update for glib subclass API cleanupsSebastian Dröge
2021-03-07Update for new #[glib::object_subclass] attribute macroSebastian Dröge
2021-02-25threadshare: Update for glib::Type API changesSebastian Dröge
2021-02-22Update for changed GLib signals APISebastian Dröge
2021-02-09Fix various warnings from clippy 1.50Sebastian Dröge
2021-01-31Use gst::PARAM_FLAG_MUTABLE_PLAYING and others consistently everywhereSebastian Dröge
Fixes https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/issues/139
2021-01-25Update for glib/gstreamer bindings API changesSebastian Dröge
2021-01-09Update to rand 0.8Sebastian Dröge
2021-01-04use cargo-c to produce cdy and static libsGuillaume Desmottes
cargo-c will produce a pkg-config file making it easier to statically link plugins. Also add 'static' features for plugins depending on < 1.14 as this is the minimal required version to use static linking because of ABI changes in core.
2021-01-02Fix clippy::redundant_pattern_matchingMarijn Suijten
2020-12-29Use typed integer literals instead of castingSebastian Dröge
2020-12-29threadshare: Return a proper error type instead of ()Sebastian Dröge
2020-12-20Update for macro renamesSebastian Dröge
2020-12-18Update everything for glib macro renamingsSebastian Dröge
2020-12-17Update for new simplified glib::Object::new() APISebastian Dröge
2020-12-08jitterbuffer: mark from_glib fn as unsafeMathieu Duponchelle
Part-of: <https://gitlab.freedesktop.org/gstreamer/gst-plugins-rs/-/merge_requests/446>
2020-12-07sodium: Handle error from Adapter::copy()Sebastian Dröge
2020-11-24ts-udpsink: Post Message on SinkMessage eventAbdul Rehman
2020-11-23generic: Update to 2018 editionSebastian Dröge
2020-11-19Update for ObjectImpl::get_property() being infallible nowSebastian Dröge
2020-11-19Fix or silence various clippy warningsSebastian Dröge
2020-11-17threadshare/udpsrc: Fix retrieve-sender-address default valueAbdul Rehman
2020-11-16meson: add support for static buildGuillaume Desmottes
There is no way to dynamically ask Cargo to build static or dynamic lib so we have to build both and pick the one we care when doing the meson processing. Fix #88
2020-11-15generic: Update for subclassing API changesSebastian Dröge
2020-11-10threadshare/udpsrc: SocketAddr to InetSocketAddress direct conversionAbdul Rehman
2020-11-07Update for glib_wrapper! API changesSebastian Dröge
2020-11-06threadshare/udpsrc: Fix to update settingsWonchul Lee
It fixes to update settings along with prepared socket and port number
2020-11-01Switch to the combined gtk-rs and gstreamer-rs repositoriesSebastian Dröge
2020-10-21threadshare: runtime: simplify a function thanks to clippyFrançois Laignel
2020-10-21Fix ClockTime comparisons not being Ord and use saturating_subFrançois Laignel
See: https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/607
2020-10-17threadshare: Update pin-project dependency to 1.0Sebastian Dröge
2020-09-30threadshare/socket: Fix build error on WindowsSeungha Yang
error[E0412]: cannot find type `Error` in this scope --> generic\threadshare\src\socket.rs:237:56 | 237 | pub fn set_tos(&self, qos_dscp: i32) -> Result<(), Error> { | ^^^^^ not found in this scope
2020-09-01threadshare/jitterbuffer: Remove unused importsSebastian Dröge
Not required anymore after a fix in glib.
2020-08-11threadshare/udpsink: Don't hold settings lock while getting clients propertySebastian Dröge
Otherwise we can deadlock between this and render().
2020-08-11threadshare/udpsink: Remove host/port propertiesSebastian Dröge
In combination with the clients property and the add/remove signals this behaves very inconsistent as there are multiple ways to do the same.
2020-08-10threadshare/udpsink: Don't hold settings lock while calling into the sink ↵Sebastian Dröge
pad handler to clear the clients Otherwise we can deadlock because of a lock order issue: - render() is called with the sink pad handler lock and takes the settings lock - clearing clients takes the sink pad handler lock
2020-07-28Fix some new clippy warningsSebastian Dröge
2020-07-26Update for removal of ObjectImpl::get_type_data()Sebastian Dröge
2020-07-10Add LICENSE files to each individual crateSebastian Dröge
2020-07-01Update for Element::post_message() signature changeSebastian Dröge
2020-06-30threadshare: use tokio tagFrançois Laignel
2020-06-25Update for functions returning a Builder being renamed to builder() instead ↵Sebastian Dröge
of new() And new video event APIs.
2020-06-25event,message,query: update instantiationFrançois Laignel
See https://gitlab.freedesktop.org/gstreamer/gstreamer-rs/-/merge_requests/532