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
path: root/video/cdg
AgeCommit message (Collapse)Author
2021-04-12fix-getters-{def,calls} passFrançois Laignel
2021-03-09Update for the subclassing glib/gstreamer bindings API changesSebastian Dröge
2021-03-07Update for new #[glib::object_subclass] attribute macroSebastian Dröge
2021-02-09Fix various warnings from clippy 1.50Sebastian Dröge
2021-01-25Update for glib/gstreamer bindings API changesSebastian 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.
2020-12-20Update for macro renamesSebastian Dröge
2020-12-18Update everything for glib macro renamingsSebastian Dröge
2020-11-23video: Update to 2018 editionSebastian Dröge
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-15video: Update for subclassing API changesSebastian Dröge
2020-11-01Switch to the combined gtk-rs and gstreamer-rs repositoriesSebastian Dröge
2020-10-13Update muldiv dependency to 1.0Sebastian Dröge
2020-10-04cdg: Fix assertion failure while typefinding with too short fileSeungha Yang
thread '<unnamed>' panicked at 'assertion failed: step != 0', ... Don't iterate with zero step size.
2020-09-23cdg: disable default features for the image crateGuillaume Desmottes
We don't need JPEG, GIF, etc. support so depending on the whole dependency chain of them is not needed and only wastes CPU time. As a result we can remove the gif crate exception in deny.toml.
2020-09-23cdg: update cdg_rendererGuillaume Desmottes
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-01video/cdgdec: Box CdgInterpreter state to prevent GObject private size to ↵Sebastian Dröge
become too big Only 64k are allowed for the sum of all private instance structs in the class hierarchy, as well as for the public instance structs. The CdgInterpreter itself is huge and adding just another two integers to GstVideoDecoderPrivate in libgstvideo is causing the limit to be reached, so let's allocate it in a separate memory area.
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
2020-05-01cdgdec: fix test with gst masterGuillaume Desmottes
Test was relying on 'blocksize' property on the source which can only be used in push mode. This change in baseparse broke it: https://gitlab.freedesktop.org/gstreamer/gstreamer/-/commit/e906197c622725e48b6250a71a922d45b006fb14 so ensure we are actually in push mode by using pushfilesrc.
2020-04-24Configure crate-type to cdylib/rlib consistently in Cargo.tomlSebastian Dröge
And not in the source code, it's a build decision.
2020-04-24Fix various new clippy warnings with clippy 1.43Sebastian Dröge
2020-04-06cdg: update image and cdg_renderer depsGuillaume Desmottes
2020-04-05Update all documentation to point to the updated repository nameArun Raghavan
Just gst-plugin-rs -> gst-plugins-rs
2020-04-05Drop gst-plugin- prefix in plugin directory nameArun Raghavan